aa_macro syntax 
 aa_macro source 
 HTML source 
 HTML render 
Key

§ 4.18 - [ol] Built-In

Mnemonic aid: ol for Ordered List

This built-in allows you to easily build HTML  <ol>  style lists.


[ol (istyle=hstyle,)(type=X)(start=N,)(lstyle=hstyle,)(wrap=styleName,)(sep=X,)item(Xitem)]

[style ulw *[b]*]
[ol joe,fred]
[ol wrap=ulw,joe,fred]
[ol sep=||,joe||fred]
[ol sep=||,wrap=ulw,joe||fred]
[ol lstyle=color:#ff0000,joe,fred]
[ol istyle=color:#ff0000,joe,fred]
[ol start=7,sep=||,joe||fred]
[ol type=A,start=3,sep=||,joe||fred]

<ol>
<li>joe</li>
<li>fred</li>
</ol>

<ol>
<li>*joe*</li>
<li>*fred*</li>
</ol>

<ol>
<li>joe</li>
<li>fred</li>
</ol>

<ol>
<li>*joe*</li>
<li>*fred*</li>
</ol>

<ol style="color:#ff0000">
<li>joe</li>
<li>fred</li>
</ol>

<ol>
<li style="color:#ff0000">joe</li>
<li style="color:#ff0000">fred</li>
</ol>

<ol start="7">
<li>joe</li>
<li>fred</li>
</ol>

<ol type="A" start="3">
<li>joe</li>
<li>fred</li>
</ol>
  1. joe
  2. fred
  1. *joe*
  2. *fred*
  1. joe
  2. fred
  1. *joe*
  2. *fred*
  1. joe
  2. fred
  1. joe
  2. fred
  1. joe
  2. fred
  1. joe
  2. fred
Note: HTML is stupid about start=X when you're using type= in that if you use type=A and start=C it'll just ignore you. You have to use type=A with start=3 to get the list to start with C.

Other built-ins used here:  [style] 

Keyboard Navigation
, Previous Page . Next Page t TOC i Index

Valid HTML 4.01 Loose
 

This manual was generated with wtfm
wtfm uses aa_macro and SqLite
aa_macro uses Python 2.7