packages feed

pandoc-3.1.4: test/command/6350.md

```
% pandoc -f commonmark+implicit_figures -t native
![caption](image.jpg){#ident width="100%"}
^D
[ Para
    [ Image
        ( "" , [] , [] ) [ Str "caption" ] ( "image.jpg" , "" )
    , Str "{#ident"
    , Space
    , Str "width=\"100%\"}"
    ]
]

```

```
% pandoc -f commonmark -t native
![caption](image.jpg){#ident width="100%"}
^D
[ Para
    [ Image
        ( "" , [] , [] ) [ Str "caption" ] ( "image.jpg" , "" )
    , Str "{#ident"
    , Space
    , Str "width=\"100%\"}"
    ]
]

```