packages feed

pandoc-3.10.1: test/command/10755.md

```
% pandoc -f native -t markdown
[ Figure
    ( "" , [] , [] )
    (Caption
       Nothing [ Para [ Str "An" , Space , Str "image." ] ])
    [ Plain
        [ Image
            ( ""
            , []
            , []
            )
            [ Str "An" , Space , Str "image." ]
            ( "media/rId20.jpg" , "" )
        ]
    ]
]
^D
![An image.](media/rId20.jpg)
```

```
% pandoc -f native -t markdown -t markdown-implicit_figures
[ Figure
    ( "" , [] , [] )
    (Caption
       Nothing [ Para [ Str "An" , Space , Str "image." ] ])
    [ Plain
        [ Image
            ( ""
            , []
            , []
            )
            [ Str "An" , Space , Str "image." ]
            ( "media/rId20.jpg" , "" )
        ]
    ]
]
^D
<figure>
<img src="media/rId20.jpg" alt="An image." />
<figcaption aria-hidden="true"><p>An image.</p></figcaption>
</figure>
```

```
% pandoc -f native -t markdown -t markdown-implicit_figures-raw_html
[ Figure
    ( "" , [] , [] )
    (Caption
       Nothing [ Para [ Str "An" , Space , Str "image." ] ])
    [ Plain
        [ Image
            ( ""
            , []
            , []
            )
            [ Str "An" , Space , Str "image." ]
            ( "media/rId20.jpg" , "" )
        ]
    ]
]
^D
:::: figure
![An image.](media/rId20.jpg)

::: caption
An image.
:::
::::
```