Template:Code/Doc

< Template:Code
Revision as of 01:10, 7 December 2011 by Carandraug (talk | contribs) (note about Template:File)

This template is for code. The first argument is the title of the code block. The actual code still needs to be inside a <pre>...</pre> block. To markup code that is the contents of specific files, use Template:File instead.

Example:

{{Code|input check example|<pre>
  if (nargin < 1 || nargin > 4)
    print_usage;
  elseif (!isnumeric (arg1))
    error ("first argument should be numeric");
  endif
</pre>}}

Will produce:

Code: input check example
  if (nargin < 1 || nargin > 4)
    print_usage;
  elseif (!isnumeric (arg1))
    error ("first argument should be numeric");
  endif