mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-31 02:04:53 +08:00
6c3e43dc57
Closes #10659.
46 lines
615 B
Markdown
46 lines
615 B
Markdown
```
|
|
% pandoc -f latex -t native
|
|
\includegraphics[
|
|
width=5cm,
|
|
]{abc.jpg}
|
|
^D
|
|
[ Para
|
|
[ Image
|
|
( "" , [] , [ ( "width" , "5cm" ) ] )
|
|
[ Str "image" ]
|
|
( "abc.jpg" , "" )
|
|
]
|
|
]
|
|
```
|
|
|
|
```
|
|
% pandoc -f latex -t native
|
|
\includegraphics[%
|
|
width=5cm,%
|
|
]{abc.jpg}
|
|
^D
|
|
[ Para
|
|
[ Image
|
|
( "" , [] , [ ( "width" , "5cm" ) ] )
|
|
[ Str "image" ]
|
|
( "abc.jpg" , "" )
|
|
]
|
|
]
|
|
```
|
|
|
|
```
|
|
% pandoc -f latex -t native
|
|
\includegraphics[width=5cm]{%
|
|
abc.jpg%
|
|
}
|
|
^D
|
|
[ Para
|
|
[ Image
|
|
( "" , [] , [ ( "width" , "5cm" ) ] )
|
|
[ Str "image" ]
|
|
( "abc.jpg" , "" )
|
|
]
|
|
]
|
|
```
|
|
|