Template:Code/Doc

From Octave
< Template:Code
Revision as of 18:32, 18 June 2012 by Carandraug (talk | contribs) (remove <pre> blocks)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.

Example 1

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

Will produce:

Code: input check example

if (nargin < 1

Example 2

Note the empty code description.

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

Will produce:

{{{2}}}