साँचा:Nowrap/विव
यह एक साँचा विवरण उपपृष्ठ है साँचा:Nowrap के लिए (ख़ुद साँचा पृष्ठ के लिए उसे ही देखें)। यहाँ प्रयोगविधि, श्रेणियाँ और अन्य संबंधित जानकारी रखी गयी है जो मूल साँचा पृष्ठ पर न लिख कर यहाँ लिखी गयी है और वहाँ प्रदर्शित होती है। |
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:
- 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:
- |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 MediaWiki 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.