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

سانچہ:Flatlist

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

لوا خطا ماڈیول:High-use میں 156 سطر پر: attempt to call upvalue '_fetch' (a nil value)۔ سانچہ:Cascade-protected template

لوا خطا: unknown error۔ This template provides a WCAG/ISO-standards-compliant accessible alternative to comma- or dash- (or other single character-) separated lists, per WP:FLATLIST and .

Lists output by {{Flatlist}} and {{Hlist}} are semantically and visually identical, and differ only in the wiki-markup used to create the lists.

Usage

[ترمیم]

{{flatlist}} starts a horizontal list, such as:

If this template is used with no parameters, {{endflatlist}} is required. For navigation boxes using {{navbox}}, one can set |listclass=hlist, and achieve the same styling without using this template. For image captions, list (i.e. asterisk) markup does not work, so consider using {{hlist}} instead.

Parameters

[ترمیم]
ذیل میں اس سانچہ کی معلومات سانچہ دستاویز درج ہے جنہیں بصری خانہ ترمیم اور دیگر آلات استعمال کرتے ہیں۔

معلومات سانچہ Flatlist

Used to create plain (i.e. unbulleted) lists.

محددات سانچہ[انتظام TemplateData]

This template prefers inline formatting of parameters.

پیرامیٹروضاحتطرزحالت
Extra Classesclass

Adds extra CSS classes to the containing div.

اِسٹرنگاختیاری
CSS Stylestyle

Adds extra CSS properties to the containing div. Complex styles should not be used in articles (per [[MOS:DEVIATIONS]]) but may be acceptable on user, project and talk pages.

مثال
border: solid 1px silver;
background: lightyellow;
اِسٹرنگاختیاری
Indentindent

Indents the list by a number of standard indents (one indent being 1.6[[em (typography)|em]]). (Useful in an indented discussion thread.)

مثال
2
عدداختیاری
Content1

The list to wrap.

مندرجاتتجویز کردہ

Examples

[ترمیم]
{{flatlist|
* [[بلی]]
* [[کتا]]
* [[گھوڑا]]
* [[گائے]]
* [[بھیڑ]]
* [[سؤر]]
}}

produces:

Alternative syntax

[ترمیم]
{{startflatlist}}
* [[بلی]]
* [[کتا]]
* [[گھوڑا]]
* [[گائے]]
* [[بھیڑ]]
* [[سؤر]]
{{endflatlist}}

produces:

Syntax for ordered lists

[ترمیم]
{{flatlist|
# [[first]]
# [[ثانیہ]]
# [[3|third]]
# [[fourth]]
# [[fifth]]
# [[sixth]]
}}

produces:

Using optional parameters

[ترمیم]
{{flatlist |indent=2 
|style=border:solid 1px silver; background:lightyellow; 
|class=nowraplinks |
* [[Alpine skiing at the 1936 Winter Olympics]]
* [[Alpine skiing at the 1948 Winter Olympics]]
* [[Alpine skiing at the 1952 Winter Olympics]]
* [[Alpine skiing at the 1956 Winter Olympics]]
* [[Alpine skiing at the 1960 Winter Olympics]]
* [[Alpine skiing at the 1964 Winter Olympics]]
}}

produces:

Technical details

[ترمیم]

This template uses the .hlist سی ایس ایس class defined in MediaWiki:Common.css to generate horizontal lists. It causes ordinary html list items to be displayed inline (horizontally), where they would normally display as block elements (vertically). The class also generates the interpuncts between list items and parentheses around nested lists.

Wikitext Expanded template HTML
{{flatlist|
* cat
* dog
* horse
* cow
* sheep
* pig
}}
سانچہ:Nowiki2
<div class="hlist">
<ul><li>cat</li>
<li>dog</li>
<li>horse</li>
<li>cow</li>
<li>sheep</li>
<li>pig</li></ul>
</div>