919c50162c
Also omit Div with class "admonition-title". These are generated by the RST reader and should be omitted on round-trip. Closes #4833.
20 lines
270 B
Markdown
20 lines
270 B
Markdown
```
|
|
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
|
|
```
|