mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-12 09:54:25 +01:00
Merge pull request #18675 from patrickhlauke/docs-code1
Docs: tweaks to content code
This commit is contained in:
commit
16552b241c
@ -13,18 +13,20 @@ Styles for inline code snippets and longer, multiline blocks of code.
|
|||||||
|
|
||||||
## Inline code
|
## Inline code
|
||||||
|
|
||||||
Wrap inline snippets of code with `code`. Be sure to escape HTML angle brackets.
|
Wrap inline snippets of code with `<code>`. Be sure to escape HTML angle brackets.
|
||||||
|
|
||||||
{% example html %}
|
{% example html %}
|
||||||
For example, <code><section></code> should be wrapped as inline.
|
For example, <code><section></code> should be wrapped as inline.
|
||||||
{% endexample %}
|
{% endexample %}
|
||||||
|
|
||||||
## Preformatted text
|
## Code blocks
|
||||||
|
|
||||||
Or, code blocks. Use `<pre>`s for multiple lines of code. Once again, be sure to escape any angle brackets in the code for proper rendering. You may optionally add the `.pre-scrollable` class, which will set a max-height of 350px and provide a y-axis scrollbar.
|
Use `<pre>`s for multiple lines of code. Once again, be sure to escape any angle brackets in the code for proper rendering. You may optionally add the `.pre-scrollable` class, which will set a max-height of 350px and provide a y-axis scrollbar.
|
||||||
|
|
||||||
{% example html %}
|
{% example html %}
|
||||||
<pre><p>Sample text here...</p></pre>
|
<pre><code><p>Sample text here...</p>
|
||||||
|
<p>And another line of sample text here...</p>
|
||||||
|
</code></pre>
|
||||||
{% endexample %}
|
{% endexample %}
|
||||||
|
|
||||||
## Variables
|
## Variables
|
||||||
@ -46,7 +48,7 @@ To edit settings, press <kbd><kbd>ctrl</kbd> + <kbd>,</kbd></kbd>
|
|||||||
|
|
||||||
## Sample output
|
## Sample output
|
||||||
|
|
||||||
For indicating blocks sample output from a program use the `<samp>` tag.
|
For indicating sample output from a program use the `<samp>` tag.
|
||||||
|
|
||||||
{% example html %}
|
{% example html %}
|
||||||
<samp>This text is meant to be treated as sample output from a computer program.</samp>
|
<samp>This text is meant to be treated as sample output from a computer program.</samp>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user