Я использую этот фрагмент кода в MediaWiki с включенным CSS. Я не уверен, будет ли это работать в старых версиях IE ...
{{#css:
.laparent ol { counter-reset: item }
.laparent li { display: block ; counter-increment: item; }
.laparent li:before { content: " ("counter(item,lower-alpha)") "; }
}}
<ol class=laparent>
<li> this is the first item;
<li> this is the second item; or
<li> this is the third item.
</ol>
Выходы:
(a) this is the first item;
(b) this is the second item; or
(c) this is the third item.