Files
John MacFarlane 725ec09a10 Make implicit_figures work again in commonmark reader.
Support for this (introduced in #6350) disappeared when we made an
architectural change.
2023-06-19 11:18:30 -07:00

496 B

% 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%\"}"
    ]
]