pandoc/test/command/4833.md
John MacFarlane 919c50162c RST writer: render Divs with admonition classes as admonitions.
Also omit Div with class "admonition-title". These are generated
by the RST reader and should be omitted on round-trip.

Closes #4833.
2018-08-13 11:17:26 -07:00

270 B

pandoc -f native -t rst
[Div ("",["warning"],[])
 [Div ("",["admonition-title"],[])
  [Para [Str "Warning"]]
 ,Para [Str "Hi"]]]
^D
.. warning::

   Hi
pandoc -f native -t rst
[Div ("",["unknown"],[])
 [Para [Str "Hi"]]]
^D
.. container:: unknown

   Hi