Template:Nowrap: Difference between revisions
ArrowHead294 (talk | contribs) mNo edit summary |
ArrowHead294 (talk | contribs) mNo edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<includeonly> | <includeonly>{{#invoke: Variable_arguments | nwr | ||
{{ | | debug_mode = {{lc:{{{debug|}}}}} | ||
}}</includeonly><noinclude> | |||
{{documentation}} | |||
[[Category:Formatting templates]] | [[Category:Formatting templates]] | ||
</noinclude> | </noinclude> |
Latest revision as of 17:33, 12 May 2025
![]() |
This template uses Lua: |
The {{nowrap}}
template stops wrapping of specific text that may happen at spaces, dashes, or parentheses. It is to be used for sections such as units, dates, and mathematical equations that should always stay together.
Usage
Pass in the text to be held together as a single unnamed parameter. Two or more unnamed parameters will result in individual chunks of non-wrapped text separated by a comma and space.
Leading and trailing whitespaces in the input parameters will be trimmed. Interior whitespaces will not wrap, but the spaces separating the generated <span>
elements are ordinary spaces and will wrap by default.
You type | Generated HTML | Rendered output |
---|---|---|
{{nowrap|10 kg (22 lb)}}
|
<span style="white-space: nowrap;">10 kg (22 lb)</span>
|
10 kg (22 lb) |
{{nowrap|1 Jan|2 Feb|3 Mar|4 Apr}}
|
<span style="white-space: nowrap;">1 Jan</span>, <span style="white-space: nowrap;">2 Feb</span>, <span style="white-space: nowrap;">3 Mar</span>, <span style="white-space: nowrap;">4 Apr</span>
|
1 Jan, 2 Feb, 3 Mar, 4 Apr |
Note: Pipe characters (|
) must be escaped as {{!}}
or {{pipe}}
, equals signs must be escaped as {{=}}
(this may apply to tags as well, e.g. <div style{{=}}"…">
), and other special characters and character sequences may need to be escaped accordingly, except for ones inside <nowiki>
, <pre>
, <math>
, and <syntaxhighlight>
tags.