mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 21:55:44 +00:00
Also some other elements that allow title: blockquote, calloutlist, etc. Closes #10594.
29 lines
584 B
Markdown
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" ] ] ]
|
|
]
|
|
]
|
|
|
|
```
|