mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
570 B
Plaintext
18 lines
570 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# sphinx-build
|
|
|
|
> Sphinx documentation generator.
|
|
> More information: <https://www.sphinx-doc.org/en/master/man/sphinx-build.html>.
|
|
|
|
- Build documentation:
|
|
|
|
`sphinx-build {{[-b|--builder]}} {{html|epub|text|latex|man|...}} {{path/to/source_directory}} {{path/to/build_directory}}`
|
|
|
|
- Build documentations intended for readthedocs.io (requires the sphinx-rtd-theme pip package):
|
|
|
|
`sphinx-build {{[-b|--builder]}} {{html}} {{path/to/docs_directory}} {{path/to/build_directory}}`
|