```
% 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" , "" )
    ]
]
```