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
On the Manual example on the Readme page, the command is missing a \ on --highlight-style breezedark line.
\
Current:
pandoc src/OSCP-exam-report-template_whoisflynn_v3.2.md \ -o output/OSCP-OS-XXXXX-Exam-Report.pdf \ --from markdown+yaml_metadata_block+raw_html \ --template eisvogel \ --table-of-contents \ --toc-depth 6 \ --number-sections \ --top-level-division=chapter \ --highlight-style breezedark --resource-path=.:src
Fix:
pandoc src/OSCP-exam-report-template_whoisflynn_v3.2.md \ -o output/OSCP-OS-XXXXX-Exam-Report.pdf \ --from markdown+yaml_metadata_block+raw_html \ --template eisvogel \ --table-of-contents \ --toc-depth 6 \ --number-sections \ --top-level-division=chapter \ --highlight-style breezedark \ --resource-path=.:src
The text was updated successfully, but these errors were encountered:
Right, it's because --resource-path=.:src was added afterward in this PR #30. Thanks, I'll fix that.
--resource-path=.:src
Sorry, something went wrong.
8dc1a32
No branches or pull requests
On the Manual example on the Readme page, the command is missing a
\
on --highlight-style breezedark line.Current:
Fix:
The text was updated successfully, but these errors were encountered: