-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
WIP - Generate a pdf of the user guide #271
base: main
Are you sure you want to change the base?
Conversation
Generate a pdf of the user guide using pandoc
I installed pandoc through homebrew and tried to generated the documentation. It failed. So I cded to
Got the following error: Any idea what might be going on? |
It might be an error specific to Mac OS : jgm/pandoc#7570 |
I had to install another package that contains xelatex. On mac that's Do you think there's a way with a smaller footprint for generating a pdf? |
So I found two alternatives that have a smaller footprint, but I'm still working on getting them to work. |
dependsOn generateUserGuideToc | ||
|
||
workingDir "$buildDir/docs" | ||
|
||
commandLine 'pandoc', '--pdf-engine=xelatex', '-s', '-o', 'user-guide.pdf', 'user-guide.md' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this specify task inputs
and task outputs
?
Inputs and outputs would enable Gradle to track up-to-date properly, and the task could even become build-cacheable in the future.
Generate a pdf of the user guide using pandoc
Overview
#108
Details
pandoc and xelatex need to be installed to generate the documentation
the pdf is not looking good for now
I hereby agree to the terms of the jqwik Contributor Agreement.