Hey Folks, Is there a way to generate PDF documen...
# questions
i
Hey Folks, Is there a way to generate PDF documentation instead of the HTML ones from kedro build-docs ? I tried looking at the config file and it seems that the output format variable (HTML by default) might be hard coded in the call to Sphinx-build at the backend. Please correct if I am wrong about this!
j
hi @Indresh Singh!
kedro build-docs
was removed in 0.19. if you're using an older version, bear in mind that it's just a wrapper over Sphinx, so you can do
Copy code
python -m sphinx -b latexpdf ...
or your favourite way to call Sphinx. have a look at your
docs/conf.py
for more information, or the Sphinx tutorial https://www.sphinx-doc.org/en/master/tutorial/index.html (disclaimer: I wrote it)