Changes

Jump to navigation Jump to search
1,073 bytes added ,  18:53, 1 August 2012
no edit summary
Line 1: Line 1: −
<big><code>{{{1}}}</code></big><noinclude>
+
<code>{{{1}}}</code><noinclude>
    
==Usage==
 
==Usage==
 +
'''Good for short code segments:'''
 +
:{{Code|<nowiki>{{Code|code line}}</nowiki>}}
   −
{{Template:Code:<nowiki>{{Code:code text}}</nowiki>}}
     −
Used to highlight code samples in an enlarged, monospace typeface that is easier to read than the default.
+
'''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.}}
 +
 
 +
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.
 +
----
 +
{{Highlight|bgcolor=yellow|'''Note''': This template is not suitable for blocks of code.}}
 +
 
 +
* Instead, see the technique below:
 +
 
 +
==For code blocks==
 +
<pre> <nowiki><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></nowiki>
 +
</pre>
 +
===Working Example (click edit to see wikicode)===
 +
<nowiki>
 +
def function():
 +
    """documentation string"""
 +
 
 +
    if True:
 +
        print True
 +
    else:
 +
        print False</nowiki>
 +
</noinclude>

Navigation menu