Template:Nowrap/doc: Difference between revisions
ArrowHead294 (talk | contribs) mNo edit summary |
No edit summary |
||
| (8 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
{{dochead}} | {{dochead|mod=Variable arguments}}{{Wikipedia}} | ||
{{Wikipedia}} | The <code>{<nowiki />{nowrap}}</code> 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. | ||
The <code><nowiki> | |||
=== Usage === | === Usage === | ||
Pass in the text to be held together as a single unnamed parameter. | 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 <code><<nowiki />span></code> elements are ordinary spaces and will wrap by default. | |||
{| class="wikitable" | {| class="wikitable" | ||
| Line 25: | Line 23: | ||
{{escape notice}} | {{escape notice}} | ||
Latest revision as of 10:09, 31 October 2025
- This template is implemented by the Lua module Module:Variable arguments.
- This template invokes the following functions: nwr from Variable arguments.
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.
