I'm using this package to render my asciidoc files with hugo.
I found that having a ordered list right after a unordered list causes a wrong html-nesting.
The ordered list will be inside the last list item of the unordered list.
The following asciidoc source was used for the test:
sdfhkjdfg
* a
* b
* c
1. a
2. b
.. abc
3. c
sdfhkjdfg
* a
* b
* c
sdfhkjdfg
1. a
2. b
.. abc
3. c
sdfhkjdfg
I'm using this package to render my asciidoc files with hugo.
I found that having a ordered list right after a unordered list causes a wrong html-nesting. The ordered list will be inside the last list item of the unordered list.
The following asciidoc source was used for the test:
will result in
I would expect the following output: