aboutsummaryrefslogtreecommitdiff
path: root/test/command/5321.md
blob: 8a665568faa3682e362ce49fb8d2f18ea72ea1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
```
% pandoc -f jats -t native
<fig id="fig-1">
  <caption>
    <p>bar</p>
  </caption>
  <graphic xlink:href="foo.png">
    <alt-text>baz</alt-text>
  </graphic>
</fig>
^D
[ Figure
    ( "fig-1" , [] , [] )
    (Caption Nothing [ Plain [ Str "bar" ] ])
    [ Para
        [ Image ( "" , [] , [] ) [ Str "baz" ] ( "foo.png" , "" ) ]
    ]
]
```

```
% pandoc -f jats -t native
<fig id="fig-1">
  <caption>
    <title>foo</title>
    <p>bar</p>
  </caption>
    <graphic xlink:href="foo.png">
      <alt-text>baz</alt-text>
    </graphic>
</fig>
^D
[ Figure
    ( "fig-1" , [] , [] )
    (Caption
       Nothing [ Plain [ Str "foo" , LineBreak , Str "bar" ] ])
    [ Para
        [ Image ( "" , [] , [] ) [ Str "baz" ] ( "foo.png" , "" ) ]
    ]
]
```