ic – Template
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Add CSS usage) |
Lou Montana (talk | contribs) m (Text replacement - "<tt>([^ ]+)<\/tt>" to "{{hl|c= $1}}") |
||
Line 2: | Line 2: | ||
|descr= This template displays '''i'''nline '''c'''ode. It also adds the page to the [[:Category:ic template usage error|ic template usage error]] category on usage error. | |descr= This template displays '''i'''nline '''c'''ode. It also adds the page to the [[:Category:ic template usage error|ic template usage error]] category on usage error. | ||
|param1= code | |param1= code | ||
|descr1= the code to display.<br>If it contains an equal sign | |descr1= the code to display.<br>If it contains an equal sign {{hl|c= =}}: | ||
** replace it with | ** replace it with {{hl|c= <nowiki>{{=}}</nowiki>}} | ||
** use | ** use {{hl|c= code=}} (see example 4) | ||
** use the MediaWiki trick | ** use the MediaWiki trick {{hl|c= 1=}} (see example 5) | ||
|example1= <nowiki>{{ic}}</nowiki> | |example1= <nowiki>{{ic}}</nowiki> | ||
|result1= {{ic}} | |result1= {{ic}} |
Revision as of 10:34, 16 November 2021
This template displays inline code. It also adds the page to the ic template usage error category on usage error.
This template is used on these pages.
Usage
{{ic|code}}
- code: the code to display.
If it contains an equal sign =:- replace it with {{=}}
- use code= (see example 4)
- use the MediaWiki trick 1= (see example 5)
Code | Result |
---|---|
{{ic}} | -No code provided-
|
{{ic|[[player]] [[setDamage]] 1;}} | player setDamage 1;
|
{{ic|_fog {{=}} [[fog]];}} | _fog = fog;
|
{{ic|code= _fog = [[fog]];}} | _fog = fog;
|
{{ic|1= _fog = [[fog]];}} | _fog = fog;
|