Difference between revisions of "Template:Nowrap/doc"

From Teampedia
Jump to: navigation, search
(Created page with "{{documentation subpage}} {{TemplateStyles|Template:nowrap/core.css}} __NOTOC__ This is the {{tl|nowrap}} template. This template prevents word wraps (line breaks) in text an...")
 
(No difference)

Latest revision as of 13:16, 8 February 2020

Template:TemplateStyles

This is the {{nowrap}} template.

This template prevents word wraps (line breaks) in text and links that contain spaces.

Usage

Lots of text {{nowrap|10 kg (22 lb)}} more text.

It may render like this:

Lots of text 10 kg (22 lb)
more text.

Or like this:

Lots of text
10 kg (22 lb) more text.

But it will not render like this:

Lots of text 10 kg (22
lb) more text.

Handling interpreted characters

Templates have problems to handle parameter data that contains equal signs "=" or vertical bars "|". In such cases consider using {{nowrap begin}} + {{nowrap end}} instead. But there are also workarounds:

For text that includes an equal sign "=", precede the text with 1=. For example:

{{nowrap|1=2 + 2 = 4}}

Which renders this:

<templatestyles src="nowrap/core.css"/>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 this:

<templatestyles src="nowrap/core.css"/>|2| < 3

Technical details

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

<source lang="HTML">This text will not wrap</source>

Then Template:Nowrap/core.css brings CSS code for proper rendering.

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

  • {{nbsp}} to enter one or more non-breaking spaces