aboutsummaryrefslogtreecommitdiff
path: root/docs/content/code.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-12-24 03:26:51 -0800
committerMark Otto <[email protected]>2014-12-24 03:26:51 -0800
commite1bb907050bbf1598f58a53fc64e2432753d5b24 (patch)
tree3d20846d1c68068ead5f45bba635a5ce3502c7b3 /docs/content/code.md
parent73e59c26e6ecfbc9a34745c6be1152834a0a8daf (diff)
downloadbootstrap-e1bb907050bbf1598f58a53fc64e2432753d5b24.tar.xz
bootstrap-e1bb907050bbf1598f58a53fc64e2432753d5b24.zip
rearrange contents docs--type, tables, images, forms, etc--into own docs section
Diffstat (limited to 'docs/content/code.md')
-rw-r--r--docs/content/code.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/content/code.md b/docs/content/code.md
new file mode 100644
index 000000000..19c02c84e
--- /dev/null
+++ b/docs/content/code.md
@@ -0,0 +1,49 @@
+---
+layout: page
+title: Code
+---
+
+Styles for inline code snippets and longer, multiline blocks of code.
+
+## Inline code
+
+Wrap inline snippets of code with `code`. Be sure to escape HTML angle brackets.
+
+{% example html %}
+For example, <code>&lt;section&gt;</code> should be wrapped as inline.
+{% endexample %}
+
+## User input
+
+Use the `<kbd>` to indicate input that is typically entered via keyboard.
+
+{% example html %}
+To switch directories, type <kbd>cd</kbd> followed by the name of the directory.<br>
+To edit settings, press <kbd><kbd>ctrl</kbd> + <kbd>,</kbd></kbd>
+{% endexample %}
+
+## Preformatted text
+
+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.
+
+{% example html %}
+<pre>&lt;p&gt;Sample text here...&lt;/p&gt;</pre>
+{% endexample %}
+
+You may optionally add the `.pre-scrollable` class, which will set a max-height of 350px and provide a y-axis scrollbar.
+
+## Variables
+
+For indicating variables use the `<var>` tag.
+
+{% example html %}
+<var>y</var> = <var>m</var><var>x</var> + <var>b</var>
+{% endexample %}
+
+## Sample output
+
+For indicating blocks sample output from a program use the `<samp>` tag.
+
+{% example html %}
+<samp>This text is meant to be treated as sample output from a computer program.</samp>
+{% endexample %}