diff options
| author | Shulhan <ms@kilabit.info> | 2023-05-30 22:12:40 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-05-30 22:12:59 +0700 |
| commit | 4e0507b62393b8461b29cda7565f685d79b58ca3 (patch) | |
| tree | dee4458e68300225fcebb88a1ecc5577b97d4828 /testdata/test.adoc | |
| parent | 3c25256f105271c402eb56cd19b1e73fa8fd26fb (diff) | |
| download | asciidoctor-go-4e0507b62393b8461b29cda7565f685d79b58ca3.tar.xz | |
all: handle custom marker in between unordered list
Given the following markup,
[square]
* item 1
[circle]
** item 2
The list on item 2 now start with `<div class="ulist circle">`.
Diffstat (limited to 'testdata/test.adoc')
| -rw-r--r-- | testdata/test.adoc | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/testdata/test.adoc b/testdata/test.adoc index 869d720..ee99271 100644 --- a/testdata/test.adoc +++ b/testdata/test.adoc @@ -429,8 +429,11 @@ This line separated by comment. * square two [circle] -* circle one -* circle two +* circles +** all +*** the +**** way +***** down [disc] * disc one @@ -452,6 +455,17 @@ This line separated by comment. * what one * what two +With mixed marker, + +[square] +* square l1 +** square l2 +[circle] +*** circle l3 +**** circle l4 +* circle l1 + + === Checklist * [*] checked |
