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.adoc | |
| 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.adoc')
| -rw-r--r-- | testdata/test.adoc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testdata/test.adoc b/testdata/test.adoc index d8473c5..cece8d6 100644 --- a/testdata/test.adoc +++ b/testdata/test.adoc @@ -998,6 +998,10 @@ include::{includedir}/fragment1.adoc[] include::{sourcedir}/anchor.go[] ---- +include::_includes/list_desc_00.adoc[] + +include::_includes/list_desc_01.adoc[] + == Images |
