Template:Nowrap/doc: Difference between revisions
(add /doc) |
m (Text replacement - "|" to "|") |
||
(3 intermediate revisions by one other user not shown) | |||
Line 43: | Line 43: | ||
Which renders this: | Which renders this: | ||
:{{nowrap| | :{{nowrap||2| < 3}} | ||
=== Technical details === | === Technical details === | ||
Line 62: | Line 62: | ||
<includeonly> | <includeonly> | ||
<!-- ADD CATEGORIES BELOW THIS LINE --> | <!-- ADD CATEGORIES BELOW THIS LINE --> | ||
[[Category: | [[Category:Formatting and function templates|{{PAGENAME}}]] | ||
</includeonly> | </includeonly> |
Latest revision as of 21:19, 11 April 2023
![]() |
This is a documentation subpage for Template:Nowrap (see that page for the template itself). It contains usage information, categories and other content that is not part of the original template page. |
This is the {{nowrap}} template.
This template prevents word wraps (line breaks) in text and links that contain spaces.
Before you use this template you might want to read up on Wikipedia:Line break handling.
Usage[edit source]
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[edit source]
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:
- 2 + 2 = 4
For text that includes a vertical bar "|", escape the bar(s) with |
or {{!}}
. For instance like this:
{{nowrap||2| < 3}}
Or like this:
{{nowrap|{{!}}2{{!}} < 3}}
Which renders this:
Technical details[edit source]
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.
{{nobr}} and {{nobreak}} redirect here.
See also[edit source]
- {{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.