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