Examples/Parameter: listattr (example 1): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
imported>FrozenPlum
No edit summary
imported>FrozenPlum
(Classes to match simplified example)
 
(3 intermediate revisions by the same user not shown)
Line 6: Line 6:
==Example==
==Example==


This selects articles in [[:Category:Countries in Africa]] or [[:Category:Countries in Europe]] and orders them by ''category'' (which is used in combination with <code>headingmode</code> to put the category as the header). <code>{{DPL|mode}}</code> is set to ''ordered'' which causes the articles listed under the categories to be numbered. The <code>hlistattr</code> adds formatting at the heading/top level, enclosing all other items; for that, an ID, orange color, and other styles are given. <code>hitemattr</code> adds an ID, color pink/red color, and other styles to the next corresponding list item heading. <code>listattr</code> applies to list '''type''' elements, in this case the ordered (ol) list elements, coloring them blue.
This selects articles in [[:Category:Countries in Africa]] or [[:Category:Countries in Europe]] and orders them by ''category'' (which is used in combination with <code>headingmode</code> to put the category as the header). <code>{{DPL|mode}}</code> is set to ''ordered'' which causes the articles listed under the categories to be numbered. The <code>hlistattr</code> adds formatting at the heading/top level, enclosing all other items; for that, an ID, orange color, and other styles are given. <code>hitemattr</code> adds an ID, color pink/red color, and other styles to the next corresponding list item heading. <code>listattr</code> applies to list '''type declaration''' elements, in this case the ordered (ol) list elements, coloring them blue.


<pre>
<pre>
Line 14: Line 14:
|headingmode = definition
|headingmode = definition
|mode = ordered
|mode = ordered
|hlistattr = id="dl-example" class="dpl-orange-background" style="font-size:17px; border:1px solid orange; padding:3px;"
|hlistattr = id="dl-example" class="dpl-orange-background"
|hitemattr = id="list-item-heading-attrubite" style="background-color:pink; border:1px solid red; padding:3px;"
|hitemattr = id="list-item-heading-attrubite" class="list-item-heading-attrubite"
|listattr = id="ol-example" class="dpl-blue-background" style="border:1px solid blue; padding:3px;"
|listattr = id="ol-example" class="dpl-blue-background"
|count = 3
|count = 3
}}
}}
Line 28: Line 28:
|headingmode = definition
|headingmode = definition
|mode = ordered
|mode = ordered
|hlistattr = id="dl-example" class="dpl-orange-background" style="font-size:17px; border:1px solid orange; padding:3px;"
|hlistattr = id="dl-example" class="dpl-orange-background"
|hitemattr = id="list-item-heading-attrubite" style="background-color:pink; border:1px solid red; padding:3px;"
|hitemattr = id="list-item-heading-attrubite" class="list-item-heading-attrubite"
|listattr = id="ol-example" class="dpl-blue-background" style="border:1px solid blue; padding:3px;"
|listattr = id="ol-example" class="dpl-blue-background"
|count = 3
|count = 3
}}
}}
<noinclude>
<noinclude>
[[Category:Controlling output format (examples)‎]]
[[Category:Heading mode]]
[[Category:Uses category parameter]]
[[Category:Uses category parameter]]
[[Category:Uses ordermethod parameter]]
[[Category:Uses ordermethod parameter]]

Latest revision as of 19:44, 15 June 2023

Please do not edit this page unless you're wanting to edit the manual itself, it is an example included in the manual.

Example

This selects articles in Category:Countries in Africa or Category:Countries in Europe and orders them by category (which is used in combination with headingmode to put the category as the header). mode is set to ordered which causes the articles listed under the categories to be numbered. The hlistattr adds formatting at the heading/top level, enclosing all other items; for that, an ID, orange color, and other styles are given. hitemattr adds an ID, color pink/red color, and other styles to the next corresponding list item heading. listattr applies to list type declaration elements, in this case the ordered (ol) list elements, coloring them blue.

{{#dpl:
|category    = Countries in Africa¦Countries in Europe
|ordermethod = category,pagetouched
|headingmode = definition
|mode        = ordered
|hlistattr   = id="dl-example" class="dpl-orange-background"
|hitemattr   = id="list-item-heading-attrubite" class="list-item-heading-attrubite"
|listattr    = id="ol-example" class="dpl-blue-background"
|count       = 3
}}

Result

{{#dpl: |category = Countries in Africa¦Countries in Europe |ordermethod = category,pagetouched |headingmode = definition |mode = ordered |hlistattr = id="dl-example" class="dpl-orange-background" |hitemattr = id="list-item-heading-attrubite" class="list-item-heading-attrubite" |listattr = id="ol-example" class="dpl-blue-background" |count = 3 }}