From Fedora Project Wiki

(remove gray background, use faint border, show code block example)
(use standard line-height)
Line 3: Line 3:
   font-family: monospace, 'Courier New';
   font-family: monospace, 'Courier New';
   font-size: 105%;
   font-size: 105%;
  line-height: 1.26em;
   overflow: auto;">{{{1}}}</span><noinclude>
   overflow: auto;">{{{1}}}</span><noinclude>



Revision as of 07:18, 19 May 2012

{{{1}}}

Usage

{{Code|code line}}

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.

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