ထႅမ်းပလဵတ်ႉ:Nowrap
{{{1}}}
This template is used on 6,000+ pages. To avoid large-scale disruption and unnecessary server load, any changes should first be tested in the template sandbox or a user subpage. The tested changes can then be added in one single edit to this template. Please consider discussing any changes on the talk page before implementing them. |
This is the {{Nowrap}} template.
This template prevents word wraps (line breaks) in text and links that contain spaces.
လွင်ႈၸႂ်ႉတိုဝ်း
မႄးထတ်း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.
တူၺ်းပႃး
မႄးထတ်း- {{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.