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
Good morning.
I've made a lot of .md documentations for my company and I wish to be able to specify the logo not in my document but as command line arguments.
So, in my .md, I've this:
logo: "logo.pdf" logo-width: "200"
But I need to put these two lines in all my markdown files...
Is it possible to specify YAML arguments as pandoc arguments like in:
pandoc example.md -o example.pdf --from markdown --template eisvogel --listings --logo logo.pdf
Many thanks!!!
The text was updated successfully, but these errors were encountered:
Found after posting here... jgm/pandoc#1960 (comment)
There is an --metadata-file arguments for this:
--metadata-file
pandoc example.md -o example.pdf --from markdown --template eisvogel --metadata-file=defaults.yaml
Many thanks
Sorry, something went wrong.
You can also set the variable directly on the command line with the -V option:
-V
pandoc example.md -o example.pdf --from markdown --template eisvogel --listings -V logo="logo.pdf"
No branches or pull requests
Good morning.
I've made a lot of .md documentations for my company and I wish to be able to specify the logo not in my document but as command line arguments.
So, in my .md, I've this:
But I need to put these two lines in all my markdown files...
Is it possible to specify YAML arguments as pandoc arguments like in:
Many thanks!!!
The text was updated successfully, but these errors were encountered: