diff options
| author | Shulhan <ms@kilabit.info> | 2022-09-05 00:25:40 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-09-05 00:25:40 +0700 |
| commit | 7eea9af824bcaee304a11d0048bdeb84fca9e96e (patch) | |
| tree | 9bc4f7c8711437d7d3b9c87e554e6392583a8a49 /testdata/test.got.html | |
| parent | 42cc6b8a786b02ee8147400a80f2ef4fb5379a01 (diff) | |
| download | asciidoctor-go-7eea9af824bcaee304a11d0048bdeb84fca9e96e.tar.xz | |
all: fix parsing list description inside include directive
Previously, given the following include statements in the main document
include::list_desc.adoc[]
include::list_desc.adoc[]
Where list_desc.adoc content is,
Item 00::
+
--
* Bullet 0
+
Description 0.
* Bullet 1
--
The first include is parsed correctly, but the second include is parsed
as is.
Diffstat (limited to 'testdata/test.got.html')
| -rw-r--r-- | testdata/test.got.html | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/testdata/test.got.html b/testdata/test.got.html index 51a8310..33b917d 100644 --- a/testdata/test.got.html +++ b/testdata/test.got.html @@ -2339,6 +2339,50 @@ type anchor struct { }</code></pre> </div> </div> +<div class="dlist"> +<dl> +<dt class="hdlist1">Item 00</dt> +<dd> +<div class="openblock"> +<div class="content"> +<div class="ulist"> +<ul> +<li> +<p>Bullet 0</p> +<div class="paragraph"> +<p>Description 0.</p> +</div> +</li> +<li> +<p>Bullet 1</p> +</li> +</ul> +</div> +</div> +</div> +</dd> +<dt class="hdlist1">Item 01</dt> +<dd> +<div class="openblock"> +<div class="content"> +<div class="ulist"> +<ul> +<li> +<p>Bullet 0</p> +<div class="paragraph"> +<p>Description 0.</p> +</div> +</li> +<li> +<p>Bullet 1</p> +</li> +</ul> +</div> +</div> +</div> +</dd> +</dl> +</div> </div> </div> <div class="sect1"> @@ -2956,7 +3000,7 @@ this sidebar.</p> <div id="footer"> <div id="footer-text"> 1.1.1<br> -Last updated 2022-07-24 21:44:51 +0700 +Last updated 2022-09-04 23:41:43 +0700 </div> </div> </body> |
