Template:Nowrap/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (interwiki)
(+)
Line 26: Line 26:
:Which renders:  
:Which renders:  
::{{nowrap|&#124;2&#124; < 3}}
::{{nowrap|&#124;2&#124; < 3}}
:Spaces at the beginning or end will fall outside the no-wrap tag in the rendered text for technical reasons.


=== See also ===
=== See also ===

Revision as of 17:10, 23 January 2008

Active contents:
<span style="white-space:nowrap">{{{1}}}</span>

This template prevents word wraps (line breaks) in text with spaces in.

Syntax

{{nowrap|your text}}

Example

{{nowrap|34 kg}} - Assures that the unit appears on the same line as the number.

Handling interpreted characters

For text that includes an equals sign "=", precede the text with 1=. For example:
{{nowrap|1=2 + 2 = 4}}
Which renders:
2 + 2 = 4
For text that includes a vertical bar "|", escape the bar(s) with &#124; or {{!}}. For example:
{{nowrap|&#124;2&#124; < 3}}
Which renders:
|2| < 3
Spaces at the beginning or end will fall outside the no-wrap tag in the rendered text for technical reasons.

See also

  • {{nowraplinks}} - Prevents wraps inside links and only allows wraps between the links and in normal text, very useful for link lists and easy to use.
  • {{nowrap begin}} - Prevents wraps in both text and links. For the really tricky wrapping cases when you need full control, for instance in very complex long link lists.