Template:Code: Difference between revisions
Jump to navigation
Jump to search
Carandraug (talk | contribs) (fixing automatic syntaxhighlight) |
No edit summary |
||
(6 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
<includeonly>{| width="100%" cellpadding=0 cellspacing=0 style="background-color: #f2fff2; border: solid 1px #bfffbf;" | <includeonly>{| width="100%" cellpadding=0 cellspacing=0 style="background-color: #f2fff2; border: solid 1px #bfffbf;" | ||
|style="background-color: #c1ffc1; border: solid 1px #a0ffa0; border-bottom: 1px solid #888; font-size: 0.9em" | {{#if: {{{1}}} | {{!}} style="background-color: #c1ffc1; border: solid 1px #a0ffa0; border-bottom: 1px solid #888; font-size: 0.9em" {{!}} '''Code:''' {{{Title|{{{1}}}}}} | ||
| | {{!}}- |}} | ||
| | | | ||
{{ | {{{Code|{{{2}}}}}} | ||
|}</includeonly><noinclude><br/>{{TemplateDoc}}[[Category:Templates]]</noinclude> | |}</includeonly><noinclude><br/>{{TemplateDoc}}[[Category:Templates]]</noinclude> |
Latest revision as of 13:20, 14 June 2013
[edit] This template is for code. The first argument is the title of the code block but can be left blank.
Code[edit]{{Code |Title= |Code= }} You can omit the parameters if you respect the correct order. Examples[edit]Example 1[edit]{{Code|input check example| if (nargin < 1 || nargin > 4) print_usage; endif }} Will produce:
Example 2[edit]Note the empty code description. {{Code| |x (x > 20) = 34; }} Will produce:
Example 3[edit]{{Code |Title = input check example |Code = if (nargin < 1 || nargin > 4) print_usage; endif }} Will produce:
Example 4[edit]{{Code |Title = |Code = if (nargin < 1 || nargin > 4) print_usage; endif }} Will produce:
|