Template:Flatlist/doc: Difference between revisions

Tag: Reverted
No edit summary
Tag: Reverted
Line 95: Line 95:
}}
}}


== Technical details ==
== Examples ==
This template uses the <code>.hlist</code> [[Cascading Style Sheets|CSS]] 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 [[interpunct]]s between list items and parentheses around nested lists.
<syntaxhighlight lang="wikitext">
{{flatlist|
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
}}
</syntaxhighlight>
 
produces:
 
{{flatlist|
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
}}
 
=== Alternative syntax ===
<syntaxhighlight lang="wikitext">
{{startflatlist}}
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
{{endflatlist}}
</syntaxhighlight>
 
produces:


{| class="wikitable"
{{startflatlist}}
! Wikitext
* [[cat]]
! Expanded template
* [[dog]]
! HTML
* [[horse]]
|- style="vertical-align:top;"
* [[cow]]
| <syntaxhighlight lang="wikitext">
* [[sheep]]
* [[pig]]
{{endflatlist}}
 
=== Syntax for ordered lists ===
<syntaxhighlight lang="wikitext">
{{flatlist|
{{flatlist|
* cat
# [[first]]
* dog
# [[second]]
* horse
# [[3|third]]
* cow
# [[fourth]]
* sheep
# [[fifth]]
* pig
# [[sixth]]
}}
}}
</syntaxhighlight>
</syntaxhighlight>
| {{nowiki2|tag=pre|
 
produces:
 
{{flatlist|
{{flatlist|
* cat
# [[first]]
* dog
# [[second]]
* horse
# [[3|third]]
* cow
# [[fourth]]
* sheep
# [[fifth]]
* pig
# [[sixth]]
}}
}}
=== Using optional parameters ===
<syntaxhighlight lang="wikitext">
{{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]]
}}
}}
| <syntaxhighlight lang="html">
<div class="hlist">
<ul><li>cat</li>
<li>dog</li>
<li>horse</li>
<li>cow</li>
<li>sheep</li>
<li>pig</li></ul>
</div>
</syntaxhighlight>
</syntaxhighlight>
|}
 
produces:
 
{{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]]
}}
 


== See also ==
== See also ==