sphinx-quickstart - Sphinx documentation template generator
sphinx-quickstart is an interactive tool that asks some
questions about your project and then generates a complete documentation
directory and sample Makefile to be used with sphinx-build(1).
- -q, --quiet
- Quiet mode that will skip interactive wizard to specify options. This
option requires -p, -a and -v options.
Structure Options.INDENT 0.0
- --sep
- If specified, separate source and build directories.
- --dot=DOT
- Inside the root directory, two more directories will be created;
"_templates" for custom HTML templates and "_static"
for custom stylesheets and other static files. You can enter another
prefix (such as ".") to replace the underscore.
Project Basic Options.INDENT 0.0
- -p PROJECT,
--project=PROJECT
- Project name will be set. (see project).
Extension Options.INDENT 0.0
- --ext-autodoc
- Enable sphinx.ext.autodoc extension.
Makefile and Batchfile Creation Options.INDENT 0.0
- --use-make-mode (-m),
--no-use-make-mode (-M)
- Makefile/make.bat uses (or doesn't use) make-mode. Default is
use, which generates a more concise Makefile/make.bat.
Changed in version 1.5: make-mode is default.
Project templating
New in version 1.5: Project templating options for
sphinx-quickstart
- -t,
--templatedir=TEMPLATEDIR
- Template directory for template files. You can modify the templates of
sphinx project files generated by quickstart. Following Jinja2 template
files are allowed:
- master_doc.rst_t
- conf.py_t
- Makefile_t
- Makefile.new_t
- make.bat_t
- make.bat.new_t
In detail, please refer the system template files Sphinx provides.
(sphinx/templates/quickstart)
2007-2019, Georg Brandl and the Sphinx team