Template:Nowrap/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (+ja)
Line 5: Line 5:
This template prevents word wraps (line breaks) in text with spaces in.  
This template prevents word wraps (line breaks) in text with spaces in.  


For link lists and other complex cases instead consider using {{tl|nowraplinks}} or {{tl|nowrap begin}}.
Before you use this template you might want to read up on [[Wikipedia:Line break handling]].


=== Syntax ===
=== Syntax ===
Line 43: Line 43:


* {{tl|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.
* {{tl|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.
* {{tl|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 link lists.
* {{tl|nowrap begin}} - Prevents wraps in both text and links. For the trickier wrapping cases when you need full control, for instance in very complex link lists.
* [[Wikipedia:Line break handling]] - The how-to guide detailing how to handle word wraps (line breaks) on Wikipedia.  


<includeonly>
<includeonly>

Revision as of 14:02, 12 March 2008


This is the {{nowrap}} template.

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

Before you use this template you might want to read up on Wikipedia:Line break handling.

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 instance like this:

{{nowrap|&#124;2&#124; < 3}}

Or like this:

{{nowrap|{{!}}2{{!}} < 3}}

Which renders:

|2| < 3

Technical details

The actual code that does the job is this HTML+CSS code:

<span style="white-space:nowrap">This text will not wrap</span>

Spaces at the beginning or end of your text will fall outside the no-wrap tag in the rendered text due to Wikimedia rendering mechanisms.

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 trickier wrapping cases when you need full control, for instance in very complex link lists.
  • Wikipedia:Line break handling - The how-to guide detailing how to handle word wraps (line breaks) on Wikipedia.