Template:Flatlist/doc: Difference between revisions
No edit summary Tag: Reverted |
No edit summary |
||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<noinclude> | |||
</noinclude>{{redirect|Template:Inline list|a navbox listing templates used within lines of text to mark problems needing attention|Template:Inline cleanup tags}} | |||
{{Documentation subpage}} | {{Documentation subpage}} | ||
<!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> | <!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> | ||
{{used in system|in [[MediaWiki:Pageinfo-header]]}} | {{used in system|in [[MediaWiki:Pageinfo-header]]}} | ||
{{tlr|startflatlist|flt}} | |||
{{Uses TemplateStyles|Template:Hlist/styles.css}} | |||
This template provides a [[Web Content Accessibility Guidelines|WCAG]]/ISO-standards-compliant accessible alternative to comma- or dash- (or other single character-) separated lists, per [[WP:FLATLIST]] and [[MOS:HLIST]]. | |||
Lists output by {{tl|Flatlist}} and {{tl|Hlist}} are semantically and visually identical, and differ only in the wiki-markup used to create the lists. | |||
{{TOC limit|3}} | {{TOC limit|3}} | ||
Line 19: | Line 24: | ||
}} | }} | ||
If this template is used with no parameters, {{tl|endflatlist}} is required. For navigation boxes using {{tl|navbox}}, one can set {{para|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 {{tl|hlist}} instead. | |||
== Parameters == | == Parameters == | ||
Line 90: | Line 95: | ||
== Examples == | == Examples == | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="wikitext"> | ||
{{flatlist| | {{flatlist| | ||
* [[cat]] | * [[cat]] | ||
Line 113: | Line 118: | ||
=== Alternative syntax === | === Alternative syntax === | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="wikitext"> | ||
{{startflatlist}} | {{startflatlist}} | ||
* [[cat]] | * [[cat]] | ||
Line 136: | Line 141: | ||
=== Syntax for ordered lists === | === Syntax for ordered lists === | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="wikitext"> | ||
{{flatlist| | {{flatlist| | ||
# [[first]] | # [[first]] | ||
# [[second]] | # [[second]] | ||
# [[third]] | # [[3|third]] | ||
# [[fourth]] | # [[fourth]] | ||
# [[fifth]] | # [[fifth]] | ||
Line 152: | Line 157: | ||
# [[first]] | # [[first]] | ||
# [[second]] | # [[second]] | ||
# [[third]] | # [[3|third]] | ||
# [[fourth]] | # [[fourth]] | ||
# [[fifth]] | # [[fifth]] | ||
Line 159: | Line 164: | ||
=== Using optional parameters === | === Using optional parameters === | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="wikitext"> | ||
{{flatlist |indent=2 | {{flatlist |indent=2 | ||
|style=border:solid 1px silver; background:lightyellow; | |style=border:solid 1px silver; background:lightyellow; | ||
Line 184: | Line 189: | ||
== Technical details == | == Technical details == | ||
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 | 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. | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 191: | Line 196: | ||
! HTML | ! HTML | ||
|- style="vertical-align:top;" | |- style="vertical-align:top;" | ||
| < | | <syntaxhighlight lang="wikitext"> | ||
{{flatlist| | {{flatlist| | ||
* cat | * cat | ||
Line 200: | Line 205: | ||
* pig | * pig | ||
}} | }} | ||
</ | </syntaxhighlight> | ||
| {{nowiki2|tag=pre| | | {{nowiki2|tag=pre| | ||
{{flatlist| | {{flatlist| |
Latest revision as of 09:02, 3 June 2025
![]() | This is a documentation subpage for Template:Flatlist. It contains usage information, categories and other content that is not part of the original template page. |
![]() | このテンプレートはin MediaWiki:Pageinfo-header。 全ての変更はウィキペディアのユーザーインターフェースに即座に反映されます。余計な混乱を避けるために、どんな変更でも最初はテンプレートのサンドボックスやテストケース、またはご自分の利用者サブページでお試しください。その後、変更を1回の編集でこのテンプレートに反映できます。どんな変更でも実施する前にノートページで議論してください。 |
![]() | This template uses TemplateStyles: |
This template provides a WCAG/ISO-standards-compliant accessible alternative to comma- or dash- (or other single character-) separated lists, per WP:FLATLIST and MOS:HLIST.
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
TemplateData for Flatlist
Parameter | Description | Type | Status | |
---|---|---|---|---|
Content | 1 | The list to wrap. | Content | suggested |
Extra Classes | class | Adds extra CSS classes to the containing div. | String | optional |
CSS Style | style | 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.
| String | optional |
Indent | indent | Indents the list by a number of standard indents (one indent being 1.6em). (Useful in an indented discussion thread.)
| Number | optional |
Format: inline
Examples
{{flatlist|
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
}}
produces:
Alternative syntax
{{startflatlist}}
* [[cat]]
* [[dog]]
* [[horse]]
* [[cow]]
* [[sheep]]
* [[pig]]
{{endflatlist}}
produces:
Syntax for ordered lists
{{flatlist|
# [[first]]
# [[second]]
# [[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
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 interpuncts between list items and parentheses around nested lists.
Wikitext | Expanded template | HTML |
---|---|---|
{{flatlist|
* cat
* dog
* horse
* cow
* sheep
* pig
}}
|
'"`UNIQ--templatestyles-0000001D-QINU`"'<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
- {{endflatlist}}
- {{hlist}}
- {{plainlist}} and {{unbulleted list}}
- {{bulleted list}}
- {{ordered list}}
- {{nowrap}}
- {{pagelist}}
- WP:HLIST