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/list_unordered_test.txt | |
| parent | e17eb2f1a50dfde85a40ce2de48abf123c04b3ad (diff) | |
| download | asciidoctor-go-e0504ba09e1113b9638baff89442679a437db63b.tar.xz | |
testdata: add test data for unordered list with custom marker "[none]"
Diffstat (limited to 'testdata/list_unordered_test.txt')
| -rw-r--r-- | testdata/list_unordered_test.txt | 39 |
1 files changed, 39 insertions, 0 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> |
