mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-04 06:35:47 +00:00
Support for this (introduced in #6350) disappeared when we made an architectural change.
30 lines
496 B
Markdown
30 lines
496 B
Markdown
```
|
|
% pandoc -f commonmark+implicit_figures -t native
|
|
{#ident width="100%"}
|
|
^D
|
|
[ Para
|
|
[ Image
|
|
( "" , [] , [] ) [ Str "caption" ] ( "image.jpg" , "" )
|
|
, Str "{#ident"
|
|
, Space
|
|
, Str "width=\"100%\"}"
|
|
]
|
|
]
|
|
|
|
```
|
|
|
|
```
|
|
% pandoc -f commonmark -t native
|
|
{#ident width="100%"}
|
|
^D
|
|
[ Para
|
|
[ Image
|
|
( "" , [] , [] ) [ Str "caption" ] ( "image.jpg" , "" )
|
|
, Str "{#ident"
|
|
, Space
|
|
, Str "width=\"100%\"}"
|
|
]
|
|
]
|
|
|
|
```
|