Template:Code/Doc: Difference between revisions

Jump to navigation Jump to search
703 bytes added ,  30 November 2013
no edit summary
(documentation for code template)
 
No edit summary
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This template is for code.
This template is for code. The first argument is the title of the code block but can be left blank.


Example:
* the actual code still needs to be inside a {{Codeline|<nowiki><pre> ... </pre></nowiki>}} block or a {{Codeline|<nowiki><syntaxhighlight> ... </syntaxhighlight></nowiki>}} block.
<pre>{{Code|xorg.conf|<pre>
* to markup code that is the contents of specific files, use [[Template:File]] instead.
Section "Monitor"
 
        Identifier  "Monitor0"
== Code ==
        VendorName  "Monitor Vendor"
<pre>
        ModelName    "Monitor Model"
{{Code
        Modeline    "800x480"  29.58  800 816 896 992  480 481 484 497  -HSync +Vsync
|Title=
EndSection
|Code=
&lt;/pre>}}</pre>
}}
</pre>
You can omit the parameters if you respect the correct order.
 
== Examples ==
=== Example 1 ===
<pre>{{Code|input check example|
if (nargin < 1 || nargin > 4)
  print_usage;
endif
}}</pre>


Will produce:
Will produce:
{{Code|xorg.conf|<pre>
{{Code|input check example|
Section "Monitor"
if (nargin < 1 || nargin > 4)
        Identifier  "Monitor0"
   print_usage;
        VendorName   "Monitor Vendor"
endif
        ModelName    "Monitor Model"
        Modeline    "800x480"  29.58  800 816 896 992  480 481 484 497  -HSync +Vsync
EndSection
</pre>}}
</pre>}}


<noinclude>[[Category:Template Documentation]]</noinclude>
=== Example 2 ===
Note the empty code description.
<pre>{{Code|
|x (x > 20) = 34;
}}</pre>
 
Will produce:
{{Code|
|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
}}
 
[[Category:Template with documentation]]
501

edits

Navigation menu