We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am experiencing an issue similar to #6114 on pandoc v3.6.3 (Lua 5.4) on Arch Linux,
$ pandoc -f latex -t native \includegraphics[width=5cm]{abc.jpg} ^D [ Para [ Image ( "" , [] , [ ( "width" , "5cm" ) ] ) [ Str "image" ] ( "abc.jpg" , "" ) ] ] $ pandoc -f latex -t native # from issue 6114, works as expected \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 Error at "source" (line 1, column 1): unexpected Tok (line 1, column 1) (CtrlSeq "includegraphics") "\\includegraphics" expecting end of input $ pandoc -f latex -t native \includegraphics[% width=5cm,% ]{abc.jpg} ^D Error at "source" (line 1, column 1): unexpected Tok (line 1, column 1) (CtrlSeq "includegraphics") "\\includegraphics" expecting end of input # This does produce an output, but treats '%' signs as part of the filename rather than comments. $ pandoc -f latex -t native \includegraphics[width=5cm]{% abc.jpg% } ^D [ Para [ Image ( "" , [] , [ ( "width" , "5cm" ) ] ) [ Str "image" ] ( "%\nabc.jpg%\n" , "" ) ] ]
Here's a minimal document in LaTeX showing that the syntax is valid
\documentclass{article} \usepackage{graphicx} \begin{document} \includegraphics[width=5cm]{example-image-a} \includegraphics[ width=5cm, ]{example-image-a} \includegraphics[% width=5cm,% ]{example-image-a} \includegraphics[width=5cm]{% example-image-a% } \end{document}
In all afore-mentioned cases, I think the expected output should be
[ Para [ Image ( "" , [] , [ ( "width" , "5cm" ) ] ) [ Str "image" ] ( "abc.jpg" , "" ) ] ]
The text was updated successfully, but these errors were encountered:
6c3e43d
No branches or pull requests
I am experiencing an issue similar to #6114 on pandoc v3.6.3 (Lua 5.4) on Arch Linux,
Here's a minimal document in LaTeX showing that the syntax is valid
In all afore-mentioned cases, I think the expected output should be
The text was updated successfully, but these errors were encountered: