``` % 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" , "" ) ] ] ] ```