Files
pandoc/test/command/10594.md
John MacFarlane f72548a7c2 DocBook reader: Handle title inside orderedlist.
Also some other elements that allow title: blockquote,
calloutlist, etc.
Closes #10594.
2025-02-03 12:33:39 -08:00

29 lines
584 B
Markdown

```
% pandoc -f docbook -t native
<orderedlist numeration="loweralpha">
<title>header inside listing</title> // not rendered in any output format!
<listitem>
<simpara>first step</simpara>
</listitem>
</orderedlist>
^D
[ Div
( "" , [] , [] )
[ Div
( "" , [ "title" ] , [] )
[ Plain
[ Str "header"
, Space
, Str "inside"
, Space
, Str "listing"
]
]
, OrderedList
( 1 , LowerAlpha , DefaultDelim )
[ [ Para [ Str "first" , Space , Str "step" ] ] ]
]
]
```