Difference between revisions of "Template:InlineCode"
(Added documentation that fixes problem.) |
|||
(15 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | < | + | <includeonly><span style="font:12px/12px monospace;background-color:#f9f9f9">{{{1}}} </span></includeonly> |
− | <noinclude> | + | <noinclude>==How to use this template== |
− | + | This template is for displaying inline code. Just place <nowiki>{{InlineCode|<Code>}}</nowiki> with <Code> as the code you wish to display. Do '''NOT''' place trailing space(s). In other words, this is fine: | |
− | This template is for displaying inline code. Just place <nowiki>{{InlineCode|<Code>}}</nowiki> with <Code> as the code you wish to display. | + | |
+ | <pre style="white-space:normal;">Lorem ipsum {{InlineCode|dolor}}sit amet. No trailing space after template.</pre> | ||
+ | |||
+ | This is not: | ||
+ | |||
+ | <pre style="white-space:normal;">Lorem ipsum {{InlineCode|dolor}} sit amet. Trailing space after template will make the rest of the paragraph look bad.</pre> | ||
+ | |||
+ | Also, convert all angled brackets (<,>) into their respective HTML entities ({{InlineCode|&lt;}}, {{InlineCode|&gt;}}). Failure to do so carries the risk of making everything else look bad.</noinclude> |
Latest revision as of 14:07, 24 January 2014
How to use this template
This template is for displaying inline code. Just place {{InlineCode|<Code>}} with <Code> as the code you wish to display. Do NOT place trailing space(s). In other words, this is fine:
Lorem ipsum {{InlineCode|dolor}}sit amet. No trailing space after template.
This is not:
Lorem ipsum {{InlineCode|dolor}} sit amet. Trailing space after template will make the rest of the paragraph look bad.
Also, convert all angled brackets (<,>) into their respective HTML entities (< , > ). Failure to do so carries the risk of making everything else look bad.