pandoc-3.6.4: test/command/10659.md
```
% 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" , "" )
]
]
```