diff options
| author | Shulhan <ms@kilabit.info> | 2025-02-13 19:15:22 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-02-13 19:58:16 +0700 |
| commit | e0504ba09e1113b9638baff89442679a437db63b (patch) | |
| tree | 07007878f7b93f579ff68e9ca2c0c0ceabea2c1e /testdata | |
| parent | e17eb2f1a50dfde85a40ce2de48abf123c04b3ad (diff) | |
| download | asciidoctor-go-e0504ba09e1113b9638baff89442679a437db63b.tar.xz | |
testdata: add test data for unordered list with custom marker "[none]"
Diffstat (limited to 'testdata')
| -rw-r--r-- | testdata/list_unordered_test.txt | 39 | ||||
| -rw-r--r-- | testdata/test.adoc | 7 | ||||
| -rw-r--r-- | testdata/test.exp.html | 21 | ||||
| -rw-r--r-- | testdata/test.got.html | 21 |
4 files changed, 82 insertions, 6 deletions
diff --git a/testdata/list_unordered_test.txt b/testdata/list_unordered_test.txt index 6e9b627..9cc436a 100644 --- a/testdata/list_unordered_test.txt +++ b/testdata/list_unordered_test.txt @@ -309,3 +309,42 @@ a quote </li> </ul> </div> + +>>> with_marker_none + +[none] +* none l1.1 +** none l2.1 +*** none l3.1 +** none l2.2 +* none l1.2 + +<<< with_marker_none + +<div class="ulist none"> +<ul class="none"> +<li> +<p>none l1.1</p> +<div class="ulist"> +<ul> +<li> +<p>none l2.1</p> +<div class="ulist"> +<ul> +<li> +<p>none l3.1</p> +</li> +</ul> +</div> +</li> +<li> +<p>none l2.2</p> +</li> +</ul> +</div> +</li> +<li> +<p>none l1.2</p> +</li> +</ul> +</div> diff --git a/testdata/test.adoc b/testdata/test.adoc index e5c4109..a98547e 100644 --- a/testdata/test.adoc +++ b/testdata/test.adoc @@ -440,8 +440,11 @@ This line separated by comment. * disc two [none] -* none one -* none two +* none 1.1 +** none 2.1 +*** none 3.1 +** none 2.2 +* none 1.2 [no-bullet] * no bullet one diff --git a/testdata/test.exp.html b/testdata/test.exp.html index bfd0537..b4c6eee 100644 --- a/testdata/test.exp.html +++ b/testdata/test.exp.html @@ -1017,10 +1017,27 @@ This line separated by comment.</p> <div class="ulist none"> <ul class="none"> <li> -<p>none one</p> +<p>none 1.1</p> +<div class="ulist"> +<ul> +<li> +<p>none 2.1</p> +<div class="ulist"> +<ul> +<li> +<p>none 3.1</p> +</li> +</ul> +</div> +</li> +<li> +<p>none 2.2</p> +</li> +</ul> +</div> </li> <li> -<p>none two</p> +<p>none 1.2</p> </li> </ul> </div> diff --git a/testdata/test.got.html b/testdata/test.got.html index 8d440e1..4ce9fe3 100644 --- a/testdata/test.got.html +++ b/testdata/test.got.html @@ -1015,10 +1015,27 @@ This line separated by comment.</p> <div class="ulist none"> <ul class="none"> <li> -<p>none one</p> +<p>none 1.1</p> +<div class="ulist"> +<ul> +<li> +<p>none 2.1</p> +<div class="ulist"> +<ul> +<li> +<p>none 3.1</p> +</li> +</ul> +</div> +</li> +<li> +<p>none 2.2</p> +</li> +</ul> +</div> </li> <li> -<p>none two</p> +<p>none 1.2</p> </li> </ul> </div> |
