diff options
-rwxr-xr-x | aux/emparse | 15 | ||||
-rw-r--r-- | test.em | 10 | ||||
-rw-r--r-- | test.html | 18 |
3 files changed, 25 insertions, 18 deletions
diff --git a/aux/emparse b/aux/emparse index 929c1c7..5fb9397 100755 --- a/aux/emparse +++ b/aux/emparse @@ -144,6 +144,8 @@ function breakblock() { opendef = 0 openblock = 0 openformat = "" + itemlevel = 1 + delete leveltype expectblock = 1 } @@ -158,9 +160,16 @@ function heading(level, line) { function item(level, type, line) { if (openitem) printf "</li>" openitem = 1 - if (level > itemlevel) printf "<%s>\n", type - if (level < itemlevel) printf "</%s>\n", type - itemlevel = level + if (type != "nl") { + for (; itemlevel < level; itemlevel++) { + printf "<%s>\n", type + leveltype[itemlevel+1] = type + } + for (; itemlevel > level; itemlevel--) { + printf "</%s>\n", leveltype[itemlevel] + leveltype[itemlevel] = "" + } + } if (type == "ul") { sub("^ +- ", "") printf "<li>" @@ -16,11 +16,11 @@ unordered list item. ordered list item. 2. Here is another. - - Here is a list - - With another list inside it [1] - - 1. Here is a mixed nested list - - An unordered item + 1. Here is a list + 1. With another list inside it [1] + - And yet another list + - Inside that list + 2. And now we're back at the first level [1] Reference list item [a] http://example.com @@ -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 |