Template:Nowrap/doc

From Xenharmonic Wiki
Jump to navigation Jump to search
English Wikipedia has an article on:

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 and dates that should always stay together.

Usage

Pass in the text to be held together as a single unnamed parameter. Passing in two or more unnamed parameters will produce individual chunks of non-wrapped text separated by a comma and space. Spaces within the parameters will not wrap, but the spaces separating the generated non-wrapped <span> elements are ordinary spaces and will wrap by default.

All leading and trailing whitespaces in the input parameters will be trimmed.

You type Generated HTML
{{nowrap|10 kg (22 lb)}}
<span style="white-space: nowrap;">10 kg (22 lb)</span>
{{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>

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.

See also