pandoc/test/command/6719.md

19 lines
283 B
Markdown
Raw Normal View History

```
% pandoc -f docbook -t native
<para>
<emphasis>emphasized </emphasis>text
</para>
^D
[ Para [ Emph [ Str "emphasized" ] , Space , Str "text" ] ]
```
2020-10-09 06:36:08 +02:00
```
% pandoc -f jats -t native
<p>
<italic> hi </italic>there
</p>
^D
[ Para [ Emph [ Str "hi" ] , Space , Str "there" ] ]
2020-10-09 06:36:08 +02:00
```