packages feed

pandoc-3.0: test/command/5321.md

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