Template:Code/Doc: Difference between revisions
Jump to navigation
Jump to search
Carandraug (talk | contribs) (documentation for code template) |
Carandraug (talk | contribs) (octavified example) |
||
Line 1: | Line 1: | ||
This template is for code. | This template is for code. The first argument is the title of the code block or text file. The actual code still needs to be inside a <nowiki><pre>...</pre></nowiki> block. | ||
Example: | Example: | ||
<pre>{{Code| | <pre>{{Code|input check example|<pre> | ||
if (nargin < 1 || nargin > 4) | |||
print_usage; | |||
elseif (!isnumeric (arg1)) | |||
error ("first argument should be numeric"); | |||
endif | |||
</pre>}}</pre> | </pre>}}</pre> | ||
Will produce: | Will produce: | ||
{{Code| | {{Code|input check example|<pre> | ||
if (nargin < 1 || nargin > 4) | |||
print_usage; | |||
elseif (!isnumeric (arg1)) | |||
error ("first argument should be numeric"); | |||
endif | |||
</pre>}} | </pre>}} | ||
<noinclude>[[Category:Template Documentation]]</noinclude> | <noinclude>[[Category:Template Documentation]]</noinclude> |
Revision as of 00:50, 7 December 2011
This template is for code. The first argument is the title of the code block or text file. The actual code still needs to be inside a <pre>...</pre> block.
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 |