Module:Unsubst/doc: Difference between revisions

Content deleted Content added
Remove now-unused $N from doc, except for a mention that it is no longer needed and may be removed from templates.
Reverted 1 edit by 2804:29B8:5161:2E33:BD3A:7743:CD0:AF9C (talk): Unexplained blanking
 
(47 intermediate revisions by 32 users not shown)
Line 1:
<!-- Categories andwhere interwikis goindicated at the bottom of this page, please. -->
{{high-risk|all=pages=yes}}
{{Module rating|protected}}
{{lua|Module:Template invocation|noprotcat=yes}}
 
Maintenance templates, such as {{tl|Citation needed}} or {{tl|Refimprove}}, should never be substituted. A trick to avoid that is to make a template substitute to its transcluded form. This module implements that trick.
Helper module to facilitate a substituted template transform into a template transclusion.
 
Infoboxes should use [[Module:Unsubst-infobox]], as should any other templates with parameters listed in block format by default.
Maintenance templates, such as {{tl|Citation needed}} or {{tl|Refimprove}}, should never be substituted. A trick to avoid that is to make a template substitute to its transcluded form.
 
=== Usage ===
 
To turn a template into a self-substituting template, wrap the existing template code with:
<pre>
{{ {{{|safesubst:}}}<noinclude />#invoke: Unsubst||$B=
 
[ ... existing template code ... ]
Line 16 ⟶ 18:
</pre>
 
The wikitext to display when not substed must be given as "$B". AAll parameterother "$N"parameters maypassed alsoto the #invoke will be seencopied into somethe templates;generated thistemplate wasinvocation requiredas indefault anvalues. olderIf versionthe value of theany module,of these default butparameters is no<code>__DATE__</code>, longerthat necessaryvalue andin maythe generated template invocation will be removedthe current month and year.
 
Some templates have a <nowiki><{{tag|noinclude></nowiki>|o}} but no matching <nowiki></{{tag|noinclude></nowiki>|c}} at the end of the template. In such cases the missing <nowiki></{{tag|noinclude></nowiki>|c}} must be added before the ending <code><nowiki>{{))}}</nowiki></code>.
All other parameters passed to the #invoke will be copied to the generated template invocation as default values. If the value of any of these default parameters is "__DATE__", that value in the generated template invocation will be the current month and year.
 
==== Advanced ====
Some templates have a <nowiki><noinclude></nowiki> but no matching <nowiki></noinclude></nowiki> at the end of the template. In such cases the missing <nowiki></noinclude></nowiki> must be added before the ending <code><nowiki>}}</nowiki></code>.
 
<pre>
{{safesubst:<noinclude />#invoke: Unsubst||$params=[ parameters ]|$aliases=[ aliases ]|$flags=[ flags ]|$B=
 
[ ... existing template code ... ]
 
}}
</pre>
 
Due to Lua limitations, parameters are normally ordered randomly when the template is substituted. {{para|$params}} can be used in #invoke:Unsubst to list template parameters in order, comma-separated (e.g. <code>egg,bacon,sausage,cheese,spam</code>). Numbered parameters should be before others in the list. Any remaining parameters are tacked onto the end of the generated invocation.
 
Parameter aliases can be listed in {{para|$aliases}} (and shouldn't be listed in {{para|$params}}), and will be replaced automatically. Each alias and its replacement should be formatted as <code>alias>replacement</code>, and each of those pairs should be comma-separated (e.g. <code>œuf>egg,melt>cheese</code>). Note that this parameter can function with or without {{para|$params}}.
 
Parameter {{para|$flags}} can be used to modify other facets of the module's behaviour; entries are comma-separated. Valid flags are <code>override</code> (allows parameters in the #invoke: to take precedence over parameters in the original template invocation); <code>keep-whitespace</code> (prevents whitespace from being trimmed from unnamed parameters); and <code>remove-empty</code> (removes empty parameters).
 
These parameters can be manipulated using parser functions to provide more complicated options (note that in the parameters any parser function, or template or module invocation, should also have <code><nowiki>SAFESUBST:<noinclude /></nowiki></code>).
 
Parameter {{para|$template-name}} will override the subst'd template's name with the template name assigned to this parameter.
 
=== Example ===
Consider a template Template:Example containing the following code:
<pre>
{{ {{{|safesubst:}}}<noinclude />#invoke: Unsubst||foo=bar |date=__DATE__ |$B=
 
[ ... Template code goes here ... ]
Line 33 ⟶ 53:
 
{| class="wikitable"
|-
! Original !! Result
|-
| <nowiki>{{subst:tlsc|example}}</nowiki> || <nowiki>{{tlc|Example|foo=bar|date{{=</nowiki>}}{{#time:F Y}}|foo{{=}}bar}}
|-
| <nowiki>{{subst:tlsc|example|foo{{=}}X}}</nowiki> || <nowiki>{{tlc|Example|foo=X|date{{=</nowiki>}}{{#time:F Y}}|foo{{=}}X}}
|-
| <nowiki>{{subst:tlsc|example|baz{{=}}X}}</nowiki> || <nowiki>{{tlc|Example|foo=bar|baz{{=}}X|date{{=</nowiki>}}{{#time:F Y}}|foo{{=}}bar}}
|-
| <nowiki>{{subst:tlsc|example|date{{=}}January 2001}}</nowiki> || <nowiki>{{tlc|Example|foo=bar|date{{=}}January 2001|foo{{=}}bar}}</nowiki>
|}
 
<includeonly>{{sandbox other||
 
| <!-- Categories andbelow this line, please; interwikis goat here:Wikidata -->
<includeonly>
[[Category:Wikipedia metatemplates]]
<!-- Categories and interwikis go here: -->
[[Category:WikipediaModules metatemplates|{{PAGENAME}}that add a tracking category]]
}}</includeonly>
 
</includeonly>