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
Hey, i really like your theme.
However, when i generate a pdf from markdown, images span multiple pages.
The images itself are huge, but they should scale. I use very basic markdown:
![Title](IMG.jpg)
Thank you for your help!
The text was updated successfully, but these errors were encountered:
I assume you are using pandoc, if so you should be able to use ![Title](IMG.jpg){width=20%}. You also need to use the link_attributes features:
pandoc
![Title](IMG.jpg){width=20%}
link_attributes
pandoc \ --template=latex.template \ --pdf-engine=lualatex \ --pdf-engine-opt="-shell-escape" \ -f markdown_github+link_attributes -o [OUTPUT.pdf] [INPUT.md]
Sorry, something went wrong.
That works, to some extend.
I can use ![Title](IMG.jpg){width=20px height=10px} to scale the image, but that does not keep the aspect ratio.
![Title](IMG.jpg){width=20px height=10px}
In the end it will be easier to calculate the size manually. But thanks!
No branches or pull requests
Hey, i really like your theme.
However, when i generate a pdf from markdown, images span multiple pages.
The images itself are huge, but they should scale.
I use very basic markdown:
Thank you for your help!
The text was updated successfully, but these errors were encountered: