Template:Code
Jump to navigation
Jump to search
[edit] This template is for code. The first argument is the title of the code block but can be left blank.
Code{{Code |Title= |Code= }} You can omit the parameters if you respect the correct order. ExamplesExample 1{{Code|input check example| if (nargin < 1 || nargin > 4) print_usage; endif }} Will produce:
Example 2Note the empty code description. {{Code| |x (x > 20) = 34; }} Will produce: style="background-color: #c1ffc1; border: solid 1px #a0ffa0; border-bottom: 1px solid #888; font-size: 0.9em"
Example 3{{Code |Title = input check example |Code = if (nargin < 1 || nargin > 4) print_usage; endif }} Will produce: style="background-color: #c1ffc1; border: solid 1px #a0ffa0; border-bottom: 1px solid #888; font-size: 0.9em"
Example 4{{Code |Title = |Code = if (nargin < 1 || nargin > 4) print_usage; endif }} Will produce: style="background-color: #c1ffc1; border: solid 1px #a0ffa0; border-bottom: 1px solid #888; font-size: 0.9em"
|