1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sphinx-build.md

13 lines
421 B
Markdown
Raw Normal View History

2019-07-31 15:41:59 +04:30
# sphinx-build
> Sphinx documentation generator.
2024-10-12 10:02:00 +02:00
> More information: <https://www.sphinx-doc.org/en/master/man/sphinx-build.html>.
2019-07-31 15:41:59 +04:30
- Build documentation:
`sphinx-build -b {{html|epub|text|latex|man|...}} {{path/to/source_dir}} {{path/to/build_dir}}`
- Build documentations intended for readthedocs.io (requires the sphinx-rtd-theme pip package):
`sphinx-build -b {{html}} {{path/to/docs_dir}} {{path/to/build_dir}}`