<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.limswiki.org/index.php?action=history&amp;feed=atom&amp;title=Template%3AOrdered_list%2Fdoc</id>
	<title>Template:Ordered list/doc - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.limswiki.org/index.php?action=history&amp;feed=atom&amp;title=Template%3AOrdered_list%2Fdoc"/>
	<link rel="alternate" type="text/html" href="https://www.limswiki.org/index.php?title=Template:Ordered_list/doc&amp;action=history"/>
	<updated>2026-04-04T14:21:38Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://www.limswiki.org/index.php?title=Template:Ordered_list/doc&amp;diff=38219&amp;oldid=prev</id>
		<title>Shawndouglas: Created as needed.</title>
		<link rel="alternate" type="text/html" href="https://www.limswiki.org/index.php?title=Template:Ordered_list/doc&amp;diff=38219&amp;oldid=prev"/>
		<updated>2020-03-10T17:55:23Z</updated>

		<summary type="html">&lt;p&gt;Created as needed.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
{{lua|Module:List}}&lt;br /&gt;
&amp;lt;!-- Categories and interwikis go at the bottom of this page. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
This template creates an ordered list, which is similar to a [[WP:L#Numbered lists|numbered list]] but may display other characters, such as roman numbers or alphabet letters, instead of the decimal enumerator.&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
;Simple:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;Ordered list |''entry1'' |''entry2''| ... &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
;Offset starting value:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;Ordered list |start=''start''|''entry1'' |''entry2'' |... |item1_style=''CSS1'' |item2_style=''CSS2''| ... &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
;Changing the symbol style:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;Ordered list |list_style_type=''type'' |''entry1'' |''entry2'' |... &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
;With CSS style:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;Ordered list |item_style=''CSS-all'' |''entry1'' |''entry2'' |... &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
;With separate CSS styles for each item:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;Ordered list |''entry1'' |item1_style=''CSS1'' |''entry2'' |item2_style=''CSS2'' |... &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
;With custom values for each item:&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;Ordered list |item1_value=''value1'' |''entry1'' |item2_value=''value2'' |''entry2'' |... &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Parameters' description&lt;br /&gt;
|-&lt;br /&gt;
! Parameter !! Description&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;list_style_type&amp;lt;/code&amp;gt; or&amp;lt;br /&amp;gt;&amp;lt;code&amp;gt;list-style-type&amp;lt;/code&amp;gt;&lt;br /&gt;
''type''&lt;br /&gt;
| This parameter indicates the list style type. Popular acceptable parameters include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;decimal (1, 2, 3, 4, ...)&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;lower-roman (i, ii, iii, iv, ...)&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;upper-roman (I, II, III, IV, ...)&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;lower-alpha (a, b, c, d, ...)&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;upper-alpha (A, B, C, D, ...)&amp;lt;/code&amp;gt;&lt;br /&gt;
For a full list, see the following section.&lt;br /&gt;
|-&lt;br /&gt;
| Positional parameters&lt;br /&gt;
{{nowrap|entry1 entry2 ...}}&lt;br /&gt;
| The contents of each list item, as unnamed or positional parameters. There is no restriction on content, except equal signs (=) must be escaped or replaced with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{=}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, lest it will be interpreted a named parameter.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;item''n''_value&amp;lt;/code&amp;gt;&lt;br /&gt;
{{nowrap|value1 value2 ...}}&lt;br /&gt;
| Ordinal or label for a specific list item; a positive integer.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;start&amp;lt;/code&amp;gt;&lt;br /&gt;
| Ordinal or label for the first item in the list; a positive integer (default is 1).&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;item''n''_style&amp;lt;/code&amp;gt;&lt;br /&gt;
{{nowrap|CSS1 CSS2 ...}}&lt;br /&gt;
| Cascading Style Sheet (CSS) styles that are set on a specific list item. (User must know CSS syntax.)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;item_style&amp;lt;/code&amp;gt;&lt;br /&gt;
CSS-all&lt;br /&gt;
| CSS styles that are set on each list item. (User must know CSS syntax.) When present, any &amp;lt;code&amp;gt;item''n''_style&amp;lt;/code&amp;gt; are disregarded.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
{{navbox lists}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- Categories and interwikis go here: --&amp;gt;&lt;br /&gt;
[[Category:List formatting and function templates]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Shawndouglas</name></author>
	</entry>
</feed>