Check out my first novel, midnight's simulacra!
Help:Magic words
See also: w:Help:Magic words on wikipedia
{{H:h {{#if: Help|Help|Help}}|editor toc|enname=}}This is an organized index of Magic words used in MediaWiki.
A "magic word" is a symbol recognized by the MediaWiki software and which when seen in the non-commented text of the page, triggers the software to do something other than display that symbol, or transclude a page with that name, but instead to use the symbol directly.
A magic word can be:
- a behavior switch, called using an upper case word, preceded and followed by two underscores, e.g. __NOTOC__
- an XML object, coded similar to HTML, preceded by "<" (and for the end tag "/") and followed by ">", as in <nowiki>...</nowiki>
- a parser function: similar to a template, a word preceded by the symbols "{{" and followed by "}}", and optionally parameter definitions between pipe characters, except that the part before the first pipe (or without pipes, the text between the braces) contains a colon (":"), e.g. {{ns:3}} and {{#ifexpr:{{{1}}}>3|large|small}}
- a variable: similar to a template without parameters, a word preceded by the symbols "{{" and followed by "}}", except the word used is in all upper case, e.g. {{CURRENTDAY}}
- a template modifier
- an image modifier
If a page in the template namespace has the same name as a magic word, the magic word will be invoked instead. If you discover you absolutely have to define a template with the same name as a magic word, prefix the name of the template with "msg:" or the name of the template namespace ("Template:"). See below for further details if you need this feature.
Tags which are used on this page such as "[MW1.5+]" indicate the MediaWiki version that first supported the magic word. "XYZ" indicates user input, which is used in the example.
Behavior switches
A behavior switch is a directive to the page software to include or omit certain elements of the page interface, or otherwise constitutes a call to various parts of the pages standard layout. It is characterised by capitalised identifiers with double underscores either side.
Table of contents
- For details see Help:Section
Word | Explanation |
---|---|
__NOTOC__ | Hides the ToC (table of contents) on the current page. |
__FORCETOC__ | Forces the ToC to appear. |
__TOC__ | Places a ToC here (overriding any __NOTOC__). Multiple ToCs are no longer supported. If __TOC__ is used multiple times, only the first occurence causes a ToC to appear. |
Other
Word | Explanation |
---|---|
__NOEDITSECTION__ | Hides the edit links beside headings. Also, will no longer automatically edit only one section at a time when double- or right-clicking a heading (if you have that feature enabled in your preferences) |
__NEWSECTIONLINK__ | [MW1.7+] Gives a "+"-link next to the edit-tab to make a new section on a non-talk page (post-a-comment feature). |
__NOCONTENTCONVERT__ __NOCC__ |
Don't perform the content language conversion (character and phase) in article display; for example, Chinese zh with zh_cn, zh_tw, zh_sg, zh_hk. |
__NOGALLERY__ | [MW1.7+] This magic word allows images in category pages to be displayed as inline links instead of gallery. |
__NOTITLECONVERT__ __NOTC__ |
Like __NOCC__ but affecting article title only. |
__END__ | Allows for trailing whitespace to be included in the page save. Removed in 19213. |
__START__ | This magic word has no effect but an ID in MagicWord.php (MAG_START ).
|
__HIDDENCAT__ | [MW1.13+] When placed anywhere on a category page, this magic word causes that category not to appear in the horizontal box near the bottom of every member page. See Help:Category#Hidden_categories for further detail. |
__NOINDEX__ | [MW1.13+] Search engines won't index the page. |
__INDEX__ | [MW1.13+] Search engines will index the page. (Overrides $wgArticleRobotPolicies, but not robots.txt.) |
__STATICREDIRECT__ | [MW1.13+] Redirects marked with this will not be fixed when someone moves a page and checks "Update any redirects that point to the original title". |
Variables
- For details see Help:Variable
Time
The time in UTC. Note that if the page was displayed by the same user and has not changed (has not been edited) since the last time it was displayed, it is possible that the page may be cached (by the user's browser) and the displayed time or date may not change. Also, if a heavily used page, rather than freshly rendered by the software each time it is generated, is instead being retrieved from a caching system (such as the main page on Wikipedia) the date or time may not change from the last time the page was originally retrieved by the caching hardware or software.
Word | Example | Explanation |
---|---|---|
{{CURRENTDAY}} | 22
|
Displays the current day in numeric form. |
{{CURRENTDAY2}} | 22
|
[MW1.6+] Same as {{CURRENTDAY}}, but with leading zero (01 .. 31). |
{{CURRENTDAYNAME}} | Friday
|
Name of the day in the language of the project or English. |
{{CURRENTDOW}} | 5
|
Same as {{CURRENTDAYNAME}}, but as a number (0=Sunday, 1=Monday...). |
{{CURRENTMONTH}} | 11
|
The number 01 .. 12 of the month. |
{{CURRENTMONTHABBREV}} | Nov
|
[MW1.5+] Same as {{CURRENTMONTH}}, but in abbreviated form (Jan .. Dec). |
{{CURRENTMONTHNAME}} | November
|
Same as {{CURRENTMONTH}}, but in named form (January .. December). |
{{CURRENTTIME}} | 01:18
|
The current time (00:00 .. 23:59). |
{{CURRENTHOUR}} | 01
|
The current hour (00 .. 23). |
{{CURRENTWEEK}} | 47
|
Number of the current week (1-53) according to ISO 8601 with no leading zero. |
{{CURRENTYEAR}} | 2024
|
Returns the current year. |
{{CURRENTTIMESTAMP}} | 20241122011811
|
[MW1.7+] ISO 8601 time stamp. |
Local time
The time depending on the local timezone of the wiki (not depending on the timezone in the user's preference settings). (All words [MW1.8+] )
Word | Example | Explanation |
---|---|---|
{{LOCALDAY}} | 22
|
Displays the local day of the month in numeric form. |
{{LOCALDAY2}} | 22
|
Same as {{LOCALDAY}}, but with a leading zero (01 .. 31). |
{{LOCALDAYNAME}} | Friday
|
Name of the day in the language of the project or English. |
{{LOCALDOW}} | 5
|
Same as {{LOCALDAYNAME}}, but as a number (0=Sunday, 1=Monday...). |
{{LOCALMONTH}} | 11
|
The number 01 .. 12 of the month. |
{{LOCALMONTHABBREV}} | Nov
|
Same as {{LOCALMONTH}}, but in abbreviated form as Jan .. Dec. |
{{LOCALMONTHNAME}} | November
|
Same as {{LOCALMONTH}}, but in named form as January .. December. |
{{LOCALTIME}} | 01:18
|
The local time (00:00 .. 23:59). |
{{LOCALHOUR}} | 01
|
The local hour (00 .. 23). |
{{LOCALWEEK}} | 47
|
Number of the local week (1-53) according to ISO 8601 with no leading zero. |
{{LOCALYEAR}} | 2024
|
Returns the local year. |
{{LOCALTIMESTAMP}} | 20241122011811
|
ISO 8601 time stamp. |
- See also:
- Help:ParserFunctions
- {{now}} for a W3C draft standard compliant date and time.
Statistics
Statistics variables give thousands separators unless ":R" for "raw" is added (actually, these versions are parser functions). When using these magic words in expressions, :R or |R is required. Without the :R or |R, an error will occur if the returned number is greater than 999 since the commas will interfere with the calculation.
Word | Example | Explanation | |
---|---|---|---|
{{CURRENTVERSION}} | 1.41.4 (c35c9ee)
|
[MW1.7+] [[mw:Manual:{{#if: Version|$wgVersion|Configuration settings}}|{{#if: Version|$wgVersion|Configuration settings}}]] [1] | |
{{NUMBEROFEDITS}} {{NUMBEROFEDITS:R}} |
10,895 10895
|
[MW1.10+ (r21319)] Returns the total number of page edits since MediaWiki, the software that runs this site, was installed. | |
{{NUMBEROFARTICLES}} {{NUMBEROFARTICLES:R}} |
588 588
|
A variable which returns the total number of articles on the Wiki. See mw:Manual:Article for information on what constitutes an article. | |
{{NUMBEROFPAGES}} {{NUMBEROFPAGES:R}} |
1,676 1676
|
[MW1.7+] Returns the total number of pages. [2] | |
{{NUMBEROFFILES}} {{NUMBEROFFILES:R}} |
418 418
|
[MW1.5+] Returns the number of uploaded files (rows in the image table). | |
{{NUMBEROFUSERS}} {{NUMBEROFUSERS:R}} |
4 4
|
[MW1.7+] Returns the number of registered users (rows in the user table). | |
{{NUMBEROFACTIVEUSERS}} {{NUMBEROFACTIVEUSERS:R}} |
1 1
|
[MW1.15+] Returns the number of active users (registered users who have performed an action in the last 30 days). | |
{{NUMBEROFADMINS}} {{NUMBEROFADMINS:R}} |
2 2
|
[MW1.7+] Returns the number of administrators (users in the sysop group). | |
{{NUMBERINGROUP:groupname}} {{NUMBERINGROUP:groupname|R}} |
{{NUMBERINGROUP:bureaucrat}} {{NUMBERINGROUP:bureaucrat|R}} (returns 2) |
[MW1.14+] Returns the number of users in a specific group. | |
{{PAGESINNAMESPACE}} | {{#if:{{#ifexpr:Template:PAGEINNS:0}}|disabled here}} | Longer alias of PAGESINNS | |
{{PAGESINNS:ns}} {{PAGESINNS:ns|R}} |
{{PAGESINNS:2}} {{#if:{{#ifexpr:Template:PAGEINNS:0}} | = Template:PAGESINNS:2}} {{PAGESINNS:2|R}} {{#if:{{#ifexpr:Template:PAGEINNS:0}}| disabled here|= Template:PAGESINNS:2}} |
[MW1.7+] Returns the number of pages in the given namespace. Disabled by default, enable with [[mw:Manual:{{#if: AllowSlowParserFunctions|$wgAllowSlowParserFunctions|Configuration settings}}|{{#if: AllowSlowParserFunctions|$wgAllowSlowParserFunctions|Configuration settings}}]]. |
Word | Example | Explanation | |
---|---|---|---|
This page | "User:Anonymous user/sandbox/my page " page
| ||
"User talk:Anonymous user/sandbox/my page " page
| |||
{{PAGENAME}} | Magic words
|
Anonymous user/sandbox/my page
|
Returns the name of the current page, including all levels (Title/Subtitle). This does not include the name of the namespace. |
{{PAGENAMEE}} | Magic_words
|
Anonymous_user/sandbox/my_page
|
More URL-friendly percent encoded special characters (To use an articlename in an external link). |
{{BASEPAGENAME}} {{BASEPAGENAMEE}} |
Magic words
|
Anonymous user/sandbox
|
[MW1.7+] The basename of a subpage ("Title/Other" on "Title/Other/Subtitle"), see Help:Link. |
{{SUBPAGENAME}} {{SUBPAGENAMEE}} |
Magic words
|
my page
|
[MW1.6+] Name of the current page, excluding parent pages ("Subtitle" on "Title/Other/Subtitle") in namespaces supporting subpages, see Help:Link. |
{{NAMESPACE}} {{NAMESPACEE}} |
Help
|
User
|
Returns the name of the namespace the current page resides in. Note that this returns an empty string for the main (article) space. |
User talk
| |||
{{FULLPAGENAME}} {{FULLPAGENAMEE}} |
Help:Magic words
|
User:Anonymous user/sandbox/my page
|
[MW1.6+] Shorthands for NAMESPACE+PAGENAME |
User talk:Anonymous user/sandbox/my page
| |||
{{TALKSPACE}} {{TALKSPACEE}} |
Help talk
|
User talk
|
[MW1.7+] Name of next odd namespace (e.g. 4 => 5) |
{{SUBJECTSPACE}} {{SUBJECTSPACEE}} |
Help
|
User
|
[MW1.7+] Name of last even namespace (e.g. 5 => 4) |
{{ARTICLESPACE}} {{ARTICLESPACEE}} |
Help
|
User
|
[MW1.7+] An alias for SUBJECTSPACE(E) |
{{TALKPAGENAME}} {{TALKPAGENAMEE}} |
Help talk:Magic words
|
User talk:Anonymous user/sandbox/my page
|
[MW1.7+] FULLPAGENAME in its TALKSPACE |
{{SUBJECTPAGENAME}} {{SUBJECTPAGENAMEE}} |
Help:Magic words
|
User:Anonymous user/sandbox/my page
|
[MW1.7+] FULLPAGENAME in its SUBJECTSPACE |
{{ARTICLEPAGENAME}} {{ARTICLEPAGENAMEE}} |
Help:Magic words
|
User:Anonymous user/sandbox/my page
|
[MW1.7+] An alias for SUBJECTPAGENAME(E) |
{{REVISIONID}} | 2871
|
N/A | [MW1.5+] The unique identifying number of a page, see Help:Diff. Note that when editing a page, this value is null. |
{{REVISIONDAY}} | 28
|
N/A | [MW1.8+] The day on which the page was last modified. |
{{REVISIONDAY2}} | 28
|
N/A | [MW1.8+] The day on which the page was last modified, but with a leading zero (01 .. 31). |
{{REVISIONMONTH}} | 04
|
N/A | [MW1.8+] The month in which the page was last modified. |
{{REVISIONYEAR}} | 2010
|
N/A | [MW1.8+] The year in which the page was last modified. |
{{REVISIONTIMESTAMP}} | 20100428032056
|
N/A | [MW1.8+] ISO 8601 time stamp, indicating when the page was last modified. |
{{SITENAME}} | dankwiki
|
Value of [[mw:Manual:{{#if: Sitename|$wgSitename|Configuration settings}}|{{#if: Sitename|$wgSitename|Configuration settings}}]]. | |
{{SERVER}} | https://nick-black.com | Value of [[mw:Manual:{{#if: Server|$wgServer|Configuration settings}}|{{#if: Server|$wgServer|Configuration settings}}]] | |
{{SCRIPTPATH}} | /dankwiki
|
[MW1.5+] [[mw:Manual:{{#if: ScriptPath|$wgScriptPath|Configuration settings}}|{{#if: ScriptPath|$wgScriptPath|Configuration settings}}]] | |
{{SERVERNAME}} | nick-black.com
|
[MW1.5+] [[mw:Manual:{{#if: ServerName|$wgServerName|Configuration settings}}|{{#if: ServerName|$wgServerName|Configuration settings}}]] |
Other
Word | Example | Example results | Explanation |
---|---|---|---|
{{PAGESINCATEGORY:category}} {{PAGESINCATEGORY:category|R}} |
{{PAGESINCATEGORY:User en}} {{PAGESINCATEGORY:User en|R}}
|
0 0
|
[MW1.13+, r32932] Returns the number of pages in a given category, including sub-category pages and file description pages. Does not count pages that are within subcategories. |
{{PAGESINCAT:category}} {{PAGESINCAT:category|R}} |
{{PAGESINCAT:User en}} {{PAGESINCAT:User en|R}}
|
0 0
|
[MW1.13+] Alias of PAGESINCATEGORY. |
{{PAGESIZE:page}} {{PAGESIZE:page|R}} |
{{PAGESIZE:Help:Magic_words}} {{PAGESIZE:Help:Magic_words|R}}
|
30,343 30343
|
[MW1.13+ r33551] Returns the byte size of the specified page. |
{{GENDER:username|TEXTIFMALE|TEXTIFFEMALE|TEXTIFUNSPECIFIED}} | {{GENDER:Anonymous Dissident|he|she|it}}
|
it
|
Returns an output dependant on a given user's gender, as set in the user's myprefs. |
Parser functions
- For details see Help:Parser function.
Namespaces and URLs
Word | Example | Explanation |
---|---|---|
{{ns:}} | {{ns:4}} = dankwiki {{ns:project}} = dankwiki
|
Returns the local name of a given namespace number. |
{{localurl:x y @}} {{localurle:x y @}} {{localurl:a|b=c}} {{localurl:Wikipedia:Category}} |
/dankwiki/index.php/X_y_@
|
Returns the local URL of a page (might not exist). Optional query parameter, see Help:Variable. |
{{urlencode:x y @}} | x+y+%40
|
[MW1.7+] Encodes variable values for use in external links. [3] |
{{anchorencode:x #y @}} | x_#y_@
|
[MW1.8+] Encodes variable values for use in section anchors. [4] |
{{fullurl:x y @}} {{fullurle:x y @}} {{fullurl:m:a|b=c}} |
https://nick-black.com/dankwiki/index.php/X_y_@ https://nick-black.com/dankwiki/index.php/X_y_@ https://nick-black.com/dankwiki/index.php?title=M:a&b=c |
[MW1.5+] Returns the full URL of a given page. Optional query parameter as for localurl:. |
{{filepath:file name}} {{filepath:file name|nowiki}} |
[MW1.?+ r25854+] Returns the absolute path to image or media file. |
Formatting
Word | Example | Explanation |
---|---|---|
{{#language:}} | {{#language:da}} = dansk
|
[MW1.7+] Native name of language code. |
{{#special:}} | {{#special:userlogin}} = Special:UserLogin
|
[MW1.? r17321+] Local name of canonical Special: page. |
{{lc:}} | {{lc:AbC dEf}} = abc def
|
[MW1.5+] LowerCase |
{{lcfirst:}} | {{lcfirst:Ab Cd}} = ab Cd
|
[MW1.5+] LowerCase first char. |
{{uc:}} | {{uc:aBc DeF}} = ABC DEF
|
[MW1.5+] UpperCase |
{{ucfirst:}} | {{ucfirst:aB cD}} = AB cD
|
[MW1.5+] UpperCase first char. |
{{formatnum:}} | {{formatnum:-299792458.56789}} = −299,792,458.56789
|
[MW1.7+] Changes the decimal separator and adds digit group separators (before the decimal separator only) according to the wiki's default locale. Also changes the digits into the local script. Leading minus and plus are recognized.
[MW1.13+] Can be reversed with an R parameter. |
{{padleft:}} {{padright:}} |
{{padleft:7|3|0}} = {{padleft:bcd|6|{{!}}}} = |
First case is, for example, applicable to years in a category... giving an ordered year to sort by pipetricks order, or any such ordering where left extended zeros allow a proper sorting. [MW1.8+] Pads a string with a character to the specified width. Note that there's a little bug that interprets non-US-ASCII characters as two, instead of one character (see the difference in café and cafe in the examples.) It does not seem possible to use padleft and padright for padding with characters with a multi-character code, such as Also, giving a non-ASCII character as a character to replicate results in a "?" character. bugzilla:12324 |
{{#tag:}} | {{#tag:myextension | content | attr=val | attr2=val2 }} = <myextension attr=val attr2=val2>content</myextension> | [MW1.12+, r29482] Passes attributes and inner content to an XML-style parser tag, parsing template variables along the way. See Bug 2257 and Extension:TagParser. |
With regard to #language and Template:Tim, see also:
- List of Wikipedias/local names - shows both names for all languages, without automatic comparison
- List of Wikipedias/local names/diff - values of #language for which {{n local}} contains a different name.
- List of Wikipedias/local names/diff 1 - for languages where the two names are different, shows both
Note: An alternative of LC and UC, for display only (not for further processing) is with CSS:
{{xpd/w{{#if:|l}}|"}}{{xpd/w{{#if:|l}}|{{#switch:p<q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}}}{{xpd/w{{#if:|l}}|{{#switch:pspan style="text-transform: lowercase">aBc deF<q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: lowercase">aBc deF<}}}}{{xpd/w{{#if:|l}}|{{#switch:p/span>q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|"}}
gives "aBc deF" "q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:"|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%22}}{{#switch:p{{#switch:p<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:p<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Ap%3Cq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%3C%7D%7D}}{{#switch:p{{#switch:pspan style="text-transform: lowercase">aBc deF<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: lowercase">aBc deF<}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pspan style="text-transform: lowercase">aBc deF<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: lowercase">aBc deF<}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apspan+style%3D%22text-transform%3A+lowercase%22%3EaBc+deF%3Cq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7Cspan+style%3D%22text-transform%3A+lowercase%22%3EaBc+deF%3C%7D%7D}}{{#switch:p{{#switch:p/span>q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:p/span>q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Ap%2Fspan%3Eq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%2Fspan%3E%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}
{{xpd/w{{#if:|l}}|"}}{{xpd/w{{#if:|l}}|{{#switch:p<q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}}}{{xpd/w{{#if:|l}}|{{#switch:pspan style="text-transform: uppercase">aBc deF<q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: uppercase">aBc deF<}}}}{{xpd/w{{#if:|l}}|{{#switch:p/span>q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|"}}
gives "aBc deF" "q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:"|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%22}}{{#switch:p{{#switch:p<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:p<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Ap%3Cq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%3C%7D%7D}}{{#switch:p{{#switch:pspan style="text-transform: uppercase">aBc deF<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: uppercase">aBc deF<}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pspan style="text-transform: uppercase">aBc deF<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: uppercase">aBc deF<}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apspan+style%3D%22text-transform%3A+uppercase%22%3EaBc+deF%3Cq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7Cspan+style%3D%22text-transform%3A+uppercase%22%3EaBc+deF%3C%7D%7D}}{{#switch:p{{#switch:p/span>q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:p/span>q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Ap%2Fspan%3Eq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%2Fspan%3E%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}
Capitalizing the first letter of each word:
{{xpd/w{{#if:|l}}|"}}{{xpd/w{{#if:|l}}|{{#switch:p<q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}}}{{xpd/w{{#if:|l}}|{{#switch:pspan style="text-transform: capitalize">aBc deF<q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: capitalize">aBc deF<}}}}{{xpd/w{{#if:|l}}|{{#switch:p/span>q|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|{{#switch:pq|p q=&s|p
q=&nl|p*q=&*|p#q=&#|p:q=&:|}}}}{{xpd/w{{#if:|l}}|"}}
gives "aBc deF" "q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:"|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%22}}{{#switch:p{{#switch:p<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:p<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|<}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Ap%3Cq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%3C%7D%7D}}{{#switch:p{{#switch:pspan style="text-transform: capitalize">aBc deF<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: capitalize">aBc deF<}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pspan style="text-transform: capitalize">aBc deF<q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|span style="text-transform: capitalize">aBc deF<}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apspan+style%3D%22text-transform%3A+capitalize%22%3EaBc+deF%3Cq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7Cspan+style%3D%22text-transform%3A+capitalize%22%3EaBc+deF%3C%7D%7D}}{{#switch:p{{#switch:p/span>q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:p/span>q|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|/span>}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Ap%2Fspan%3Eq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%2Fspan%3E%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}{{#switch:p{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}q|p_*q|p_**q|p_***q|p_#q|p_##q|p_###q|p_:q|p_::q|p_:::q=%0d}}{{#switch:{{#switch:pq|p q=&s|p_q=&nl|p*q=&*|p#q=&#|p:q=&:|}}|&p=%7c|&e=%3d|&s=+|&nl=%0d|&*=%2a|&#=%23|&:=%3a|%7B%7B%23switch%3Apq%7Cp+q%3D%26s%7Cp%0Aq%3D%26nl%7Cp%2Aq%3D%26%2A%7Cp%23q%3D%26%23%7Cp%3Aq%3D%26%3A%7C%7D%7D}}
Template modifiers
Usage | Explanation |
---|---|
{{:xyz}} | A bare colon is not a template modifier, it's the prefix for the main namespace. Test e.g. article {{:UTC}} vs. template {{UTC}}. Using this syntax you include the text of the main namespace article xyz in another article. |
{{int:xyz}} | Same as {{MediaWiki:xyz}}, except standard message translation is applied depending on subpages and content/user/uselang language. Another difference is: this doesn't appear under "Templates used on this page:". Rendered as ⧼xyz⧽ if MediaWiki:xyz doesn't exist. See also Help:System message. |
{{msg:xyz}} | Even if there is a magic word named "xyz", use template:xyz unless the template doesn't exist (equivalent to {{template:xyz}}). Normally, magic words have priority when there is a conflict. |
{{msgnw:xyz}} | The unexpanded wikitext is rendered (more or less, for details see msgnw). |
{{raw:xyz}} | [MW1.6+] Equivalent to {{msg:xyz}} above<ref>Wikimedia SVN revision 12925</ref>.
|
{{subst:xyz}}
|
In the wikitext, the tag is substituted by the content (single-level evaluation only), see Help:Substitution. |
Image modifiers
- For details see w:en:Wikipedia:Extended image syntax.
These are image modifiers used in [[Image:title.ext|modifier|...|modifier]]
links. Some are mutually exclusive, and then the last specified wins. The last unrecognized modifier is used as caption for framed images or together with thumbnails. It's also used as description alt=text.
Size
Word | Usage | Explanation |
---|---|---|
framed frame enframed |
[[Image:Mediawiki.png|framed]] | Places an image in a frame with a description. Uses original size and stubbornly ignores width parameter if given. In general, far better to use thumb, as is only suitable for small images. |
border | [[Image:Mediawiki.png|border]] | Shows a 1px border around the image. |
thumbnail thumb |
[[Image:Mediawiki.png|thumbnail]] | Modifies image size, sets it dependent on user's favorite thumbnail size in one's preferences, or on the given width parameter (see below). |
thumb=xyz | [[Image:Mediawiki.png|thumb=Wiki.png]] | Manualthumb: instead of displaying an automatically-sized thumbnail for Mediawiki.png, display the image Wiki.png. |
width px 100x200px |
[[Image:Mediawiki.png|40px]] [[Image:Mediawiki.png|100x200px]] |
Scales image to given width in pixels Scales image to no more than 100 pixels wide and no more than 200 high, but image scaled to retain its true aspect ratio within the boundary specified. |
Position
- For details see Help:Images and other uploaded files
The positions are mutually exclusive; the last specified wins. Template:- can stop floating. For inline images only modifier px (see above) is supported.
Word | Usage | Explanation |
---|---|---|
right | [[Image:Mediawiki.png|right]] | Modifies position, floats the image to the right. |
left | [[Image:Mediawiki.png|left]] | Modifies position, floats the image to the left. |
none | [[Image:Mediawiki.png|none]] | Explicitly states that the image should not float. |
center centre |
[[Image:Mediawiki.png|center]] | Modifies position, like none but centered. |
Miscellany
Word | Example | Explanation |
---|---|---|
{{DISPLAYTITLE:xyz}} | no inline output | [MW 1.7+] Modify the page's title [5], enabled in Wikimedia projects since June 2007 ([6]). Also see [[mw:Manual:{{#if: AllowDisplayTitle|$wgAllowDisplayTitle|Configuration settings}}|{{#if: AllowDisplayTitle|$wgAllowDisplayTitle|Configuration settings}}]]. |
{{DIRMARK}} {{DIRECTIONMARK}} |
|
[MW1.7+] u+200E left to right or u+200D right to left mark |
{{CONTENTLANGUAGE}} | en
|
[MW1.7+] code of the site's default interface language ([[mw:Manual:{{#if: LanguageCode|$wgLanguageCode|Configuration settings}}|{{#if: LanguageCode|$wgLanguageCode|Configuration settings}}]]) |
{{DEFAULTSORT:xyz}} | no inline output | [MW1.10+] Sets a default category sort key for the whole current page (also applying for category tags before this tag)<ref>"Technology report", en-Wikipedia Signpost, January 2007</ref>. |
#REDIRECT | #REDIRECT [[target]] at top of source page |
Creates a redirect to another page (to the target page). |
Despite its name MAGICNUMBER is no magic word, the ISBN magic works only on the MediaWiki:Booksources page used by Special:Booksources, but talking about [[{{ns:4}}:{{int:Booksources}}|{{ns:8}}:Booksources]] in a way working on any MediaWiki installation is esoteric enough to be noted here.
Language-dependent word conversions
Word | Example | Explanation |
---|---|---|
{{CURRENTMONTHNAMEGEN}} | November
|
Genitive form of month name used for Czech, Polish, Ukrainian[7] |
{{LOCALMONTHNAMEGEN}} | November
|
Genitive form of month name used for Czech, Polish, Ukrainian (local time) |
{{grammar:case | word }} | {{grammar:7sg|Wikipedie}} on cs: is Wikipedií .
|
Derived word forms in inflected languages like Czech [8] |
{{plural:count |form1 |form2 }} {{plural:count |1st | 2nd | 3rd }} |
{{plural: 2 | is | are }} outputs are {{plural: 1 | this | these }} outputs this {{plural: 0 | his | their }} outputs their
|
count 1 yields form1 (singular), plural transformations are used for languages like Russian [9] based on "count mod 10". |
"Grammar" and "Plural" are language-dependent functions, defined in [10], [11], etc. (note that in PHP, the modulo operator is the percent sign).
"Grammar" can either be applied to predefined words only, or to arbitrary words, depending on whether the definition is just a 2D array, or involves string manipulations. See also cs:Šablona:Wikivar/GRAMMAR.
"Plural" is a site-language-dependent switch function, controlled by function convertPlural in Language.php (which distinguishes between 1 and "not 1"), for some languages overridden in Languagexx.php, e.g. for French (which distinguishes between <=1 and >1) and Russian, which uses a grammar case for amounts ending in 1 (1, 21, 31,...), another case for amounts ending in 2 to 4 (2, 3, 4, 22, 23, 24, ...) and still another case for the remaining quantities.
As opposed to ParserFunctions, "plural" accepts points and commas in numbers and interprets them in a site-language-specific way (depending on $separatorTransformTable in Messagesxx.php); on this site:
- {{plural:1.000|a|b|c}} gives a
- {{plural:1,000|a|b|c}} gives b
(on e.g. the German and the Dutch sites reversed w.r.t. the result on English sites).
"Plural" is used in various system messages, e.g. message with id 'nmembers' (talk), where it uses interface language instead of site language.
See also
- ParserFunctions #expr:, #if:, #ifeq:, etc.
- mw:Manual:Magic words
- Source for Language.php
- Source for MagicWord.php
- Adding parser functions
- mw:Extension:Variables : adding new magic words like {{CURRENTUSER}}
Notes and references
{{H:f {{#if: Help|Help|Help}}|enname=Magic words}}