zedouard
zedouard

Reputation: 255

How to build just one file with Sphinx

For a fast preview, I want to build only one file and not all the project. It is possible with sphinx ?

Recently I do something like :

sphinx-build -b html documentation/ doc_html

Upvotes: 11

Views: 2555

Answers (1)

plaes
plaes

Reputation: 32766

Sphinx already uses incremental build by writing output files only for new and changed source files. But before that, full build is needed because Sphinx needs to know where the internal links are pointing and where they are referenced from.

Upvotes: 3

Related Questions