= – Template

From Bohemia Interactive Community
Jump to navigation Jump to search
(Good enough for a start.)
m (Some wiki formatting)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
=<noinclude>
<includeonly>=</includeonly><noinclude>{{Doc/Template
==Usage==
|descr= Use to transclude the equals symbol into template parameters, where the normal use of the symbol would provoke the parsing of the parameter's text, assigning the text to the right of the symbol as the value of a variable named by the text to the left.
Use to transclude the equals symbol into template parameters, where the normal use of the symbol would provoke the parsing of the parameter's text, assigning the text to the right of the symbol as the value of a variable named by the text to the left.


i.e. {{Inline code|<nowiki>{{Inline code|_foo = true;}}</nowiki>}} would result in a transclusion of {{Template|Inline code}} (and/or other similar templates) with the value {{Inline code|true;}} assigned to a variable called {{Inline code|_foo}} because of the way MediaWiki parses Template code. So we use {{Inline code|<nowiki>{{Inline code|_foo {{=}} true;}}</nowiki>}} in order to stop the equals sign being parsed as an assignation. Thus {{Inline code|<nowiki>{{Inline code|_foo {{=}} true;}}</nowiki>}} results in the desired {{Inline code|_foo {{=}} true;}}.
e.g {{hl|<nowiki>{{hl|_foo = true;}}</nowiki>}} tells the wiki "use the {{Template|hl}} template with {{hl|_foo}} parameter using {{hl|true}} as an argument". Using {{Template|{{=}}}} solves this issue.


[[Category:Templates|{{uc:{{PAGENAME}}]]
{{Feature|informative|Another quick solution to solve the equals issue would be telling the wiki that the first (1) argument is our content: {{hl|<nowiki>{{hl|1= _foo = true;}}</nowiki>}}.}}
</noinclude>
 
|example1= <nowiki>{{=}}</nowiki>
|result1= {{=}}
 
}}</noinclude>

Latest revision as of 14:12, 27 July 2022

Use to transclude the equals symbol into template parameters, where the normal use of the symbol would provoke the parsing of the parameter's text, assigning the text to the right of the symbol as the value of a variable named by the text to the left.

e.g {{hl|_foo = true;}} tells the wiki "use the {{hl}} template with _foo parameter using true as an argument". Using {{=}} solves this issue.

Another quick solution to solve the equals issue would be telling the wiki that the first (1) argument is our content: {{hl|1= _foo = true;}}.

This template is used on these pages.

Usage

{{=}}


Examples
Code Result
{{=}} =