aboutsummaryrefslogtreecommitdiff
path: root/test/command/jats-figure-alt-text.md
blob: 999e7b9c2fed37ff6da2ff376058850b73159be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
```
% pandoc -f jats -t native
<fig id="fig-1">
  <caption>
    <p>bar</p>
  </caption>
  <alt-text>alternative-decription</alt-text>
  <graphic xlink:href="foo.png">
    <alt-text>baz</alt-text> 
  </graphic>
</fig>

^D
[ Figure
    ( "fig-1" , [] , [] )
    (Caption Nothing [ Plain [ Str "bar" ] ])
    [ Plain [ Str "alternative-decription" ]
    , Para
        [ Image ( "" , [] , [] ) [ Str "baz" ] ( "foo.png" , "" ) ]
    ]
]
```