diff options
author | John Ankarström <john@ankarstrom.se> | 2021-01-30 09:55:26 +0000 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-01-30 09:55:26 +0000 |
commit | 4d00aca757265010cae5626c33d186c1cb2c23b8 (patch) | |
tree | 56dd8770fc0c7523708bd7c59d06d7cb7a2aa784 /test.html | |
parent | 99ac4e7f5a389898673348449e4a522a86d07f1c (diff) | |
download | em-4d00aca757265010cae5626c33d186c1cb2c23b8.tar.gz |
Fix nested lists
Diffstat (limited to 'test.html')
-rw-r--r-- | test.html | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -23,19 +23,17 @@ ordered list item. </li><li value="2">Here is another. </li> </ol> -<ul> -<li>Here is a list -</li><ul> -<li>With another list inside it [<a href="#ref1">1</a>] -</li> -</ul> -</ul> <ol> -<li value="1">Here is a mixed nested list +<li value="1">Here is a list +</li><ol> +<li value="1">With another list inside it [<a href="#ref1">1</a>] </li><ul> -<li>An unordered item -</li> +<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 +</li> </ol> <ol class="reflist" style="font-size: small;"> <li value="1" id="ref1">Reference list item |