| LAML - slide 12 : 24 |
(body
(ul
(map li (list "one" "two" "three"))
)
(let ((attributes
(list 'start "3" 'css:list-style-type "lower-roman"))
(contents (map li (list "one" "two" "three"))))
(ol 'id "demo" contents attributes))) <body>
<ul><li>one</li> <li>two</li> <li>three</li></ul>
<ol style="list-style-type: lower-roman;" id="demo" start="3">
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
</body>







