blob: 23701c06646e7f1b3cd656fdb89ded91311fc937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
```
% pandoc -f docbook -t native
<para>
<emphasis>emphasized </emphasis>text
</para>
^D
[ Para [ Emph [ Str "emphasized" ] , Space , Str "text" ] ]
```
```
% pandoc -f jats -t native
<p>
<italic> hi </italic>there
</p>
^D
[ Para [ Emph [ Str "hi" ] , Space , Str "there" ] ]
```
|