diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2022-01-03 14:18:25 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-01-03 14:19:53 -0800 |
| commit | 53699f2ab3f9b6dce04ae44a0d0342cb78974bd1 (patch) | |
| tree | e36bd25a9589ec696281a18f085fbb51ddb06761 /test/docbook-reader.docbook | |
| parent | ca7a3ed5ed31e0c5787926d7b775c8f57c5932a4 (diff) | |
DocBook reader: be sensitive to spacing="compact" in lists.
When spacing="compact" is set, Para elements are turned
into Plain, so we get a "tight" list.
Closes #7799.
Diffstat (limited to 'test/docbook-reader.docbook')
| -rw-r--r-- | test/docbook-reader.docbook | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/test/docbook-reader.docbook b/test/docbook-reader.docbook index 8b0b34c42..f668279ca 100644 --- a/test/docbook-reader.docbook +++ b/test/docbook-reader.docbook @@ -194,9 +194,9 @@ These should not be escaped: \$ \\ \> \[ \{ </listitem> </itemizedlist> <para> - Pluses loose: + Asterisks tight: </para> - <itemizedlist> + <itemizedlist spacing="compact"> <listitem> <para> Plus 1 @@ -213,26 +213,6 @@ These should not be escaped: \$ \\ \> \[ \{ </para> </listitem> </itemizedlist> - <para> - Minuses loose: - </para> - <itemizedlist> - <listitem> - <para> - Minus 1 - </para> - </listitem> - <listitem> - <para> - Minus 2 - </para> - </listitem> - <listitem> - <para> - Minus 3 - </para> - </listitem> - </itemizedlist> </sect2> <sect2 id="ordered"> <title>Ordered</title> @@ -254,9 +234,9 @@ These should not be escaped: \$ \\ \> \[ \{ </listitem> </orderedlist> <para> - and using spaces: + and tight: </para> - <orderedlist numeration="arabic"> + <orderedlist spacing="compact" numeration="arabic"> <listitem> <para> One |
