Template:Code: Difference between revisions
Jump to navigation
Jump to search
(Created page with '<code>{{{1}}}</code><noinclude> ==Usage== {{Code|<nowiki>{{Code|code line}}</nowiki>}} {{Code|This is a long line of code that may have many words that continue for a long lon…') |
No edit summary |
||
Line 2: | Line 2: | ||
==Usage== |
==Usage== |
||
'''Good for short code segments:''' |
|||
⚫ | |||
⚫ | |||
'''Not so good for longer segments:''' |
|||
{{Code|This is a long line of code that may have many words that continue for a long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long length.}} |
:{{Code|This is a long line of code that may have many words that continue for a long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long length.}} |
||
Used to highlight code samples in an enlarged (through the site's main.css), monospace typeface that is easier to read than the default. |
Used to highlight code samples in an enlarged (through the site's main.css), monospace typeface that is easier to read than the default. |
||
The template form is shorter and easier to enter while editing. |
The template form is shorter and easier to enter while editing. |
||
---- |
|||
{{Highlight|bgcolor=yellow|'''Note''': This template is not suitable for blocks of code.}} |
|||
* Instead, see the technique below: |
|||
==For code blocks== |
==For code blocks== |
Revision as of 23:51, 1 August 2012
{{{1}}}
Usage
Good for short code segments:
{{Code|code line}}
Not so good for longer segments:
This is a long line of code that may have many words that continue for a long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long length.
Used to highlight code samples in an enlarged (through the site's main.css), monospace typeface that is easier to read than the default.
The template form is shorter and easier to enter while editing.
- Instead, see the technique below:
For code blocks
<nowiki> Start with a space in the first column, (before the <nowiki>). Then your block format will be maintained. This is good for copying in code blocks: def function(): """documentation string""" if True: print True else: print False</nowiki>
Working Example (click edit to see wikicode)
def function(): """documentation string""" if True: print True else: print False