Template:Code

Revision as of 13:20, 14 June 2013 by Airon90 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


[edit]

Template-info.png Template Documentation

This template is for code. The first argument is the title of the code block but can be left blank.

  • the actual code still needs to be inside a <pre> ... </pre> block or a <syntaxhighlight> ... </syntaxhighlight> block.
  • to markup code that is the contents of specific files, use Template:File instead.

CodeEdit

{{Code
|Title=
|Code=
}}

You can omit the parameters if you respect the correct order.

ExamplesEdit

Example 1Edit

{{Code|input check example|
if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}

Will produce:

Code: input check example

if (nargin < 1

Example 2Edit

Note the empty code description.

{{Code|
|x (x > 20) = 34;
}}

Will produce:

{{{2}}}

Example 3Edit

{{Code
|Title = input check example
|Code = if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}

Will produce:

if (nargin < 1

Example 4Edit

{{Code
|Title = 
|Code = if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}

Will produce:

if (nargin < 1