mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
6c3e43dc57
Closes #10659.
615 B
615 B
% 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" , "" )
]
]