aboutsummaryrefslogtreecommitdiff
path: root/test/docbook-reader.native
diff options
context:
space:
mode:
authorMathieu Boespflug <[email protected]>2020-06-14 19:45:52 +0200
committerGitHub <[email protected]>2020-06-14 10:45:52 -0700
commitbbf04df900fd5de3efeefb4d1de82170193eccf0 (patch)
tree2a36bb2cd4c8b91ce19cb1e1b68e17109a5d83b4 /test/docbook-reader.native
parent89bbe76ace7705e6e7f3817de0e09972fc3be435 (diff)
Docbook reader: implement <procedure> (#6442)
A `<procedure>` contains a sequence of `<step>`'s, or `<substeps>` that themselves contain `<step>`'s.
Diffstat (limited to 'test/docbook-reader.native')
-rw-r--r--test/docbook-reader.native7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/docbook-reader.native b/test/docbook-reader.native
index 36245e875..1961949d9 100644
--- a/test/docbook-reader.native
+++ b/test/docbook-reader.native
@@ -575,4 +575,9 @@ Pandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "John",Sof
,Cell ("",[],[]) AlignDefault (RowSpan 1) (ColSpan 1)
[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",Space,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]])]
(TableFoot ("",[],[])
- [])]
+ [])
+,BulletList
+ [[Para [Str "A",Space,Str "Step"]]
+ ,[Para [Str "Another",Space,Str "Step"]
+ ,Para [Str "Substeps",Space,Str "can",Space,Str "be",Space,Str "nested",Space,Str "indefinitely",Space,Str "deep."]]
+ ,[Para [Str "A",Space,Str "Final",Space,Str "Step"]]]]