Template:Code/Doc: Difference between revisions

no edit summary
m (remove <pre> blocks)
No edit summary
Line 4: Line 4:
* to markup code that is the contents of specific files, use [[Template:File]] instead.
* to markup code that is the contents of specific files, use [[Template:File]] instead.


==Example 1==
== Code ==
<pre>
{{Code
|Title=
|Code=
}}
</pre>
You can omit the parameters if you respect the correct order.
 
== Examples ==
=== Example 1 ===
<pre>{{Code|input check example|
<pre>{{Code|input check example|
if (nargin < 1 || nargin > 4)
if (nargin < 1 || nargin > 4)
Line 18: Line 28:
</pre>}}
</pre>}}


==Example 2 ==
=== Example 2 ===
Note the empty code description.
Note the empty code description.
<pre>{{Code| |
<pre>{{Code|
x (x > 20) = 34;
|x (x > 20) = 34;
}}</pre>
}}</pre>


Will produce:
Will produce:
{{Code| |
{{Code|  
x (x > 20) = 34;
|x (x > 20) = 34;
}}
 
=== Example 3 ===
<pre>
{{Code
|Title = input check example
|Code = if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}
}}
</pre>


Will produce:
{{Code
|Title = input check example
|Code = if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}
=== Example 4 ===
<pre>
{{Code
|Title =
|Code = if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}
</pre>
Will produce:
{{Code
|Title =
|Code = if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}
<noinclude>[[Category:Template Documentation]]</noinclude>
<noinclude>[[Category:Template Documentation]]</noinclude>
5

edits