diff options
author | John Ankarström <john@ankarstrom.se> | 2021-01-31 17:53:13 +0000 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-01-31 17:53:13 +0000 |
commit | 3ab42a5fb02a2652cae089bd3f936729fd49382d (patch) | |
tree | 3796f303e935ff9c532dba8467c174e418465b11 /test.html | |
parent | 16685c2197586e8f1bd1168827f7b98c868bc1ac (diff) | |
download | em-3ab42a5fb02a2652cae089bd3f936729fd49382d.tar.gz |
Support [A-Za-z] in list item values
HTML/CSS makes this a bit awkward; all the better if em
can handle it for you.
Diffstat (limited to 'test.html')
-rw-r--r-- | test.html | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -29,26 +29,26 @@ unordered list item. </li> </ul> <ol> -<li value="1">Here is an +<li value="1" style="list-style-type: decimal">Here is an ordered list item. -</li><li value="2">Here is another. +</li><li value="2" style="list-style-type: decimal">Here is another. </li> </ol> <ol> -<li value="1">Here is a list +<li value="1" style="list-style-type: decimal">Here is a list </li><ol> -<li value="1">With another list inside it [<a href="#ref1">1</a>] +<li value="1" style="list-style-type: lower-alpha">With another list inside it [<a href="#ref1">1</a>] </li><ul> <li>And yet another list </li><li>Inside that list </li></ul> </ol> -<li value="2">And now we're back at the first level [<a href="http://example.com/abc">2</a>] +<li value="2" style="list-style-type: decimal">And now we're back at the first level [<a href="http://example.com/abc">b</a>] </li> </ol> <ol class="reflist"> -<li value="1" id="ref1">Reference list item -</li><li value="2" id="ref2"><a href="http://example.com/abc">http://example.com/abc</a> +<li value="1" style="list-style-type: decimal" id="ref1">Reference list item +</li><li value="2" style="list-style-type: lower-alpha" id="refb"><a href="http://example.com/abc">http://example.com/abc</a> </li> </ol> <dl> |