Template:Flatlist/doc
File:Farm-Fresh css add.svg | This template uses TemplateStyles: |
This template provides a WCAG/ISO-standards-compliant accessible alternative to comma or dash (or other single character) separated lists.
Usage
{{flatlist}} starts a horizontal list, such as:
- cat
- dog
- horse
- cow
- sheep
- pig
Parameters
This is the TemplateData documentation for this template used by VisualEditor and other tools.
Flatlist/doc
<templatedata> { "description": { "en": "Used to create plain (i.e. unbulleted) lists.", "cs": "Používá se k vytváření jednoduchých (tj. bez odrážek) seznamů." }, "format": "inline", "params": { "1": { "label": { "en": "Content", "cs": "Obsah" }, "description": { "en": "The list to wrap.", "cs": "Seznam k zabalení." }, "suggested": true, "type": "content" }, "class": { "label": { "en": "Extra Classes", "cs": "Extra třídy" }, "description": { "en": "Adds extra CSS classes to the containing div.", "cs": "Přidá další třídy CSS do obsahující div." }, "type": "string" }, "style": { "label": { "en": "CSS Style", "cs": "Styl CSS" }, "description": { "en": "Adds extra CSS properties to the containing div.", "cs": "Přidá další vlastnosti CSS do obsahující div." }, "example": "\n border: solid 1px silver;\n background: lightyellow;\n", "type": "string" }, "indent": { "label": { "en": "Indent", "cs": "Odrážka" }, "description": { "en": "Indents the list by a number of standard indents (one indent being 1.6em), particularly handy for inclusion in an indented discussion thread.", "cs": "Odsadí seznam o několik standardních odsazení (jedna odrážka je 1,6 em), což je zvláště užitečné pro zahrnutí do odsazeného diskusního vlákna." }, "example": "2", "type": "number" } }, "paramOrder": [ "class", "style", "indent", "1" ] } </templatedata>
Examples
{{flatlist|
* cat
* dog
* horse
* cow
* sheep
* pig
}}
produces:
- cat
- dog
- horse
- cow
- sheep
- pig
Syntax for ordered lists
{{flatlist|
# first
# second
# third
# fourth
# fifth
# sixth
}}
produces:
- first
- second
- third
- fourth
- fifth
- sixth
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:
- 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
Technical details
This template uses the .hlist
CSS class defined in the TemplateStyles 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
}} |
<div class="hlist " > * cat * dog * horse * cow * sheep * pig </div> |
<div class="hlist">
<ul><li>cat</li>
<li>dog</li>
<li>horse</li>
<li>cow</li>
<li>sheep</li>
<li>pig</li></ul>
</div>
|
See also
- {{multi-column numbered list}}
- {{nowrap}}
- {{pagelist}}
- {{Hlist}} – Uses Module:List
- Help:Lists