aboutsummaryrefslogtreecommitdiff
path: root/test/command/6719.md
blob: 1f9e29cf5622b2d15c545fa680a79a18107ba732 (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" ] ]
```