Template:Nowrap/doc
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.