Difference between revisions of "Template:Trim/doc"
From Summertime Saga Wiki
m |
m |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | The template {{tlg|trim}} trims leading and trailing (but not interior) whitespace from a string. The string should be passed as the first unnamed parameter. The parameter must be named {{para|1}} if its value contains an equals sign “=” character. | |
== Usage == | == Usage == | ||
− | : {{ | + | : {{tlg|code=yes|nolink=yes|trim|{{var|text}}}} produces {{var|text}} with any leading or trailing whitespace removed. |
== Examples == | == Examples == | ||
Line 11: | Line 11: | ||
! Renders as | ! Renders as | ||
|- | |- | ||
− | | {{ | + | | {{tlg|code=yes|nolink=yes|trim| abc}} |
| {{trim| abc}} | | {{trim| abc}} | ||
|- | |- | ||
− | | {{ | + | | {{tlg|code=yes|nolink=yes|trim|xyz }} |
| {{trim|xyz }} | | {{trim|xyz }} | ||
|- | |- | ||
− | | {{ | + | | {{tlg|code=yes|nolink=yes|trim| abc xyz }} |
| {{trim| abc xyz }} | | {{trim| abc xyz }} | ||
|} | |} | ||
− | [[Category:Templates]] | + | [[Category:Templates]][[Category:Templates documentation]] |
− | [[Category:Templates documentation]] |
Latest revision as of 17:38, 21 July 2020
The template {{trim}} trims leading and trailing (but not interior) whitespace from a string. The string should be passed as the first unnamed parameter. The parameter must be named |1=
if its value contains an equals sign “=” character.
Usage
{{trim|text}}
produces text with any leading or trailing whitespace removed.
Examples
Markup | Renders as |
---|---|
{{trim|abc}}
|
abc |
{{trim|xyz }}
|
xyz |
{{trim|abc xyz }}
|
abc xyz |