diff options
| author | John MacFarlane <[email protected]> | 2025-06-16 12:22:03 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-06-16 12:44:24 -0700 |
| commit | 3d124e5d39f72b50e6a9c71446a40ae17471d90d (patch) | |
| tree | ce7ea2f18cf22ba1149f781368abf25383be76d1 /test | |
| parent | 621839369865fb731da435786d654f639ff5ce70 (diff) | |
DocBook reader: be sensitive to startingnumber attribute...
on ordered lists. Closes #10912.
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/10912.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/command/10912.md b/test/command/10912.md new file mode 100644 index 000000000..048f179ab --- /dev/null +++ b/test/command/10912.md @@ -0,0 +1,16 @@ +``` +% pandoc -f docbook -t native +<orderedlist numeration="arabic" startingnumber="4"> +<listitem> +<simpara>Para1</simpara> +</listitem> +<listitem> +<simpara>Para2</simpara> +</listitem> +</orderedlist> +^D +[ OrderedList + ( 4 , Decimal , DefaultDelim ) + [ [ Para [ Str "Para1" ] ] , [ Para [ Str "Para2" ] ] ] +] +``` |
