مندرجات کا رخ کریں

سانچہ:Nowrap begin

آزاد دائرۃ المعارف، ویکیپیڈیا سے

This template prevents word wraps (line breaks) in text and links with spaces in. It is designed to handle the really tricky wrapping cases where you need full control. It works similarly to {{nowrap}} and {{nowraplinks}}. This template takes no parameters; instead, it works in tandem with {{nowrap end}}.

Helper templates

[ترمیم]

This template has a number of helper templates which allows you to tell the web browser exactly where line breaks may occur:

Note: These helper templates may only be used in sections surrounded by {{nowrap begin}} and {{nowrap end}} or they may cause weird behaviour of your page.

  • {{wrap}} – Marks where a wrap may occur.

Usage

[ترمیم]
{{nowrap begin}}

[[نمک]] and{{wrap}} [[Pepper]] and{{wrap}} [[کری]]
and{{wrap}} [[زعفران]].{{wrap}}
[[نمک]] and{{wrap}} [[Pepper]] and{{wrap}} [[کری]]
and{{wrap}} [[زعفران]].

{{nowrap end}}

It will render something like this:

نمک and کالی مرچ and کری and
زعفران. نمک and کالی مرچ and
کری and زعفران.

But it will not render like this:

نمک and کالی مرچ and کری
and زعفران. نمک and کالی مرچ
and کری and زعفران.

To make your code readable and easy to edit, you can put each wrappable "line" on its own line. And let's use some dots too. Like this:

{{nowrap begin}}

[[نمک]] and [[Pepper]]{{·wrap}}{{wrap}}
[[Pepper]] and [[کری]]{{·wrap}}{{wrap}}
[[کری]] and [[زعفران]]{{·wrap}}{{wrap}}
[[زعفران]] and [[نمک]]

{{nowrap end}}

It will render something like this:

نمک and کالی مرچ · کالی مرچ and کری ·
کری and زعفران · زعفران and نمک

But it will not render like this:

نمک and کالی مرچ · کالی مرچ
and کری · کری and زعفران
· زعفران and نمک

Examples

[ترمیم]

Here are the above examples in actual running code in a table. Try dragging the width of your web browser window so it becomes smaller and smaller and watch how the line wrapping behaves:

نمک and کالی مرچ and کری and زعفران. نمک and کالی مرچ and کری and زعفران.

نمک and کالی مرچ · کالی مرچ and کری · کری and زعفران · زعفران and نمک

An example demonstrating all the helper templates:

نمک کالی مرچ کری · زعفران · نمک · کالی مرچ · کری – زعفران – نمک | کالی مرچ | کری · زعفران · نمک

نمک کالی مرچ کری · زعفران · نمک · کالی مرچ · کری – زعفران – نمک | کالی مرچ | کری · زعفران · نمک

Technical details

[ترمیم]

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

سانچہ:Sxhl

{{·}} and the other helper templates should not have any spaces or newlines before them or they will render two spaces before the dot. They tolerate anything from no to several spaces and even a newline after them and they will still only render one space after the dot. If a wrap occurs then the wrap will come after the dot, even if there are spaces before the helper template.

The {{·}} causes problems if inside sections of bolded and/or italicised text. Do end the bold text before the {{·}} and continue the bold text after it to avoid the problems. {{}} and the other helper templates only have this problem if the section is bolded and italicised at the same time.