16 lines
249 B
ReStructuredText
16 lines
249 B
ReStructuredText
Build documentation
|
|
===================
|
|
|
|
.. code:: python3
|
|
|
|
import sphinx
|
|
|
|
sphinx.build_main([
|
|
'-E',
|
|
'-j', '2',
|
|
'-b', 'html',
|
|
'-D', 'project=Project',
|
|
'-c', conf_directory,
|
|
input_directory,
|
|
output_directory,
|
|
])
|