sphinx/build
This commit is contained in:
parent
64652f1527
commit
76fc0e0657
1 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,16 @@
|
||||||
Build documentation
|
Build documentation
|
||||||
===================
|
===================
|
||||||
|
|
||||||
.. todo:: command line and conf.py
|
.. code:: python3
|
||||||
|
|
||||||
|
import sphinx
|
||||||
|
|
||||||
|
sphinx.build_main([
|
||||||
|
'-E',
|
||||||
|
'-j', '2',
|
||||||
|
'-b', 'html',
|
||||||
|
'-D', 'project=Project',
|
||||||
|
'-c', conf_directory,
|
||||||
|
input_directory,
|
||||||
|
output_directory,
|
||||||
|
])
|
||||||
|
|
Loading…
Reference in a new issue