Configuration¶
The configuration directory must contain a file named conf.py
.
This file (containing Python code) is called the «build configuration file»
and contains (almost) all configuration needed to customise Sphinx input
and output behaviour.
An optional file docutils.conf can be added to the configuration directory to adjust Docutils configuration if not otherwise overridden or set by Sphinx.
Важные моменты, которые следует отметить:
Если иное не задокументировано - значения должны быть строками, а их значение по умолчанию - пустая строка.
The term «fully-qualified name» (FQN) refers to a string that names an importable Python object inside a module; for example, the fully-qualified name
"sphinx.builders.Builder"
means theBuilder
class in thesphinx.builders
module.Document names use
/
as the path separator and do not contain the file name extension.
Where glob-style patterns are permitted, you can use the standard shell constructs (
*
,?
,[...]
, and[!...]
) with the feature that none of these will match slashes (/
). A double star**
can be used to match any sequence of characters including slashes.
Совет
The configuration file is executed as Python code at build time
(using importlib.import_module()
, with the current directory set
to the configuration directory),
and therefore can execute arbitrarily complex code.
Sphinx then reads simple names from the file’s namespace as its configuration. In general, configuration values should be simple strings, numbers, or lists or dictionaries of simple values.
The contents of the config namespace are pickled (so that Sphinx can find out
when configuration changes), so it may not contain unpickleable values –
delete them from the namespace with del
if appropriate.
Modules are removed automatically, so deleting imported modules is not needed.
Project information¶
- project¶
- Тип:
str
- По умолчанию:
'Project name not set'
The documented project’s name. Example:
project = 'Thermidor'
- author¶
- Тип:
str
- По умолчанию:
'Author name not set'
The project’s author(s). Example:
author = 'Joe Bloggs'
- copyright¶
- project_copyright¶
- Тип:
str | Sequence[str]
- По умолчанию:
''
A copyright statement. Permitted styles are as follows, where „YYYY“ represents a four-digit year.
copyright = 'YYYY'
copyright = 'YYYY, Author Name'
copyright = 'YYYY Author Name'
copyright = 'YYYY-YYYY, Author Name'
copyright = 'YYYY-YYYY Author Name'
If the string
'%Y'
appears in a copyright line, it will be replaced with the current four-digit year. For example:copyright = '%Y'
copyright = '%Y, Author Name'
copyright = 'YYYY-%Y, Author Name'
Добавлено в версии 3.5: The
project_copyright
alias.Изменено в версии 7.1: The value may now be a sequence of copyright statements in the above form, which will be displayed each to their own line.
Изменено в версии 8.1: Copyright statements support the
'%Y'
placeholder.
- version¶
- Тип:
str
- По умолчанию:
''
The major project version, used as the replacement for the
|version|
default substitution.This may be something like
version = '4.2'
. The full project version is defined inrelease
.If your project does not draw a meaningful distinction between between a „full“ and „major“ version, set both
version
andrelease
to the same value.
- release¶
- Тип:
str
- По умолчанию:
''
The full project version, used as the replacement for the
|release|
default substitution, and e.g. in the HTML templates.This may be something like
release = '4.2.1b0'
. The major (short) project version is defined inversion
.If your project does not draw a meaningful distinction between between a „full“ and „major“ version, set both
version
andrelease
to the same value.
General configuration¶
- needs_sphinx¶
- Тип:
str
- По умолчанию:
''
Set a minimum supported version of Sphinx required to build the project. The format should be a
'major.minor'
version string like'1.1'
Sphinx will compare it with its version and refuse to build the project if the running version of Sphinx is too old. By default, there is no minimum version.Добавлено в версии 1.0.
Изменено в версии 1.4: Allow a
'major.minor.micro'
version string.
- extensions¶
- Тип:
list[str]
- По умолчанию:
[]
A list of strings that are module names of Sphinx extensions. These can be extensions bundled with Sphinx (named
sphinx.ext.*
) or custom first-party or third-party extensions.To use a third-party extension, you must ensure that it is installed and include it in the
extensions
list, like so:extensions = [ ... 'numpydoc', ]
There are two options for first-party extensions. The configuration file itself can be an extension; for that, you only need to provide a
setup()
function in it. Otherwise, you must ensure that your custom extension is importable, and located in a directory that is in the Python path.Ensure that absolute paths are used when modifying
sys.path
. If your custom extensions live in a directory that is relative to the configuration directory, usepathlib.Path.resolve()
like so:import sys from pathlib import Path sys.path.append(str(Path('sphinxext').resolve())) extensions = [ ... 'extname', ]
The directory structure illustrated above would look like this:
<project directory>/ ├── conf.py └── sphinxext/ └── extname.py
- needs_extensions¶
- Тип:
dict[str, str]
- По умолчанию:
{}
If set, this value must be a dictionary specifying version requirements for extensions in
extensions
. The version strings should be in the'major.minor'
form. Requirements do not have to be specified for all extensions, only for those you want to check. Example:needs_extensions = { 'sphinxcontrib.something': '1.5', }
This requires that the extension declares its version in the
setup()
function. See Sphinx API for further details.Добавлено в версии 1.3.
- manpages_url¶
- Тип:
str
- По умолчанию:
''
A URL to cross-reference
manpage
roles. If this is defined tohttps://manpages.debian.org/{path}
, the:manpage:`man(1)`
role will link to <https://manpages.debian.org/man(1)>. The patterns available are:page
The manual page (
man
)section
The manual section (
1
)path
The original manual page and section specified (
man(1)
)
This also supports manpages specified as
man.1
.# To use manpages.debian.org: manpages_url = 'https://manpages.debian.org/{path}' # To use man7.org: manpages_url = 'https://man7.org/linux/man-pages/man{section}/{page}.{section}.html' # To use linux.die.net: manpages_url = 'https://linux.die.net/man/{section}/{page}' # To use helpmanual.io: manpages_url = 'https://helpmanual.io/man{section}/{page}'
Добавлено в версии 1.7.
- today¶
- today_fmt¶
These values determine how to format the current date, used as the replacement for the
|today|
default substitution.If you set
today
to a non-empty value, it is used.Otherwise, the current time is formatted using
time.strftime()
and the format given intoday_fmt
.
The default for
today
is''
, and the default fortoday_fmt
is'%b %d, %Y'
(or, if translation is enabled withlanguage
, an equivalent format for the selected locale).
Options for figure numbering¶
- numfig¶
- Тип:
bool
- По умолчанию:
False
If
True
, figures, tables and code-blocks are automatically numbered if they have a caption. Thenumref
role is enabled. Obeyed so far only by HTML and LaTeX builders.Примечание
The LaTeX builder always assigns numbers whether this option is enabled or not.
Добавлено в версии 1.3.
- numfig_format¶
- Тип:
dict[str, str]
- По умолчанию:
{}
A dictionary mapping
'figure'
,'table'
,'code-block'
and'section'
to strings that are used for format of figure numbers. The marker%s
will be replaced with the figure number.The defaults are:
numfig_format = { 'code-block': 'Listing %s', 'figure': 'Fig. %s', 'section': 'Section', 'table': 'Table %s', }
Добавлено в версии 1.3.
- numfig_secnum_depth¶
- Тип:
int
- По умолчанию:
1
If set to
0
, figures, tables, and code-blocks are continuously numbered starting at1
.If
1
, the numbering will bex.1
,x.2
, … withx
representing the section number. (If there is no top-level section, the prefix will not be added ). This naturally applies only if section numbering has been activated via the:numbered:
option of thetoctree
directive.If
2
, the numbering will bex.y.1
,x.y.2
, … withx
representing the section number andy
the sub-section number. If located directly under a section, there will be noy.
prefix, and if there is no top-level section, the prefix will not be added.Any other positive integer can be used, following the rules above.
Добавлено в версии 1.3.
Изменено в версии 1.7: The LaTeX builder obeys this setting if
numfig
is set toTrue
.
Options for highlighting¶
- highlight_language¶
- Тип:
str
- По умолчанию:
'default'
The default language to highlight source code in. The default is
'default'
, which suppresses warnings if highlighting as Python code fails.The value should be a valid Pygments lexer name, see Showing code examples for more details.
Добавлено в версии 0.5.
Изменено в версии 1.4: The default is now
'default'
.
- highlight_options¶
- Тип:
dict[str, dict[str, Any]]
- По умолчанию:
{}
A dictionary that maps Pygments lexer names to their options. These are lexer-specific; for the options understood by each, see the Pygments documentation.
Example:
highlight_options = { 'default': {'stripall': True}, 'php': {'startinline': True}, }
Добавлено в версии 1.3.
Изменено в версии 3.5: Allow configuring highlight options for multiple lexers.
- pygments_style¶
- Тип:
str
- По умолчанию:
'sphinx'
The style name to use for Pygments highlighting of source code. If not set, either the theme’s default style or
'sphinx'
is selected for HTML output.Изменено в версии 0.3: If the value is a fully-qualified name of a custom Pygments style class, this is then used as custom style.
Options for HTTP requests¶
- tls_verify¶
- Тип:
bool
- По умолчанию:
True
If True, Sphinx verifies server certificates.
Добавлено в версии 1.5.
- tls_cacerts¶
- Тип:
str | dict[str, str]
- По умолчанию:
''
A path to a certification file of CA or a path to directory which contains the certificates. This also allows a dictionary mapping hostnames to the certificate file path. The certificates are used to verify server certifications.
Добавлено в версии 1.5.
Совет
Sphinx uses requests as a HTTP library internally. If
tls_cacerts
is not set, Sphinx falls back to requests“ default behaviour. See SSL Cert Verification for further details.
- user_agent¶
- Тип:
str
- По умолчанию:
'Mozilla/5.0 (X11; Linux x86_64; rv:100.0) Gecko/20100101 Firefox/100.0 Sphinx/X.Y.Z'
Set the User-Agent used by Sphinx for HTTP requests.
Добавлено в версии 2.3.
Options for internationalisation¶
These options influence Sphinx’s Native Language Support. See the documentation on Локализация for details.
- language¶
- Тип:
str
- По умолчанию:
'en'
The code for the language the documents are written in. Any text automatically generated by Sphinx will be in that language. Also, Sphinx will try to substitute individual paragraphs from your documents with the translation sets obtained from
locale_dirs
. Sphinx will search language-specific figures named byfigure_language_filename
(e.g. the German version ofmyfigure.png
will bemyfigure.de.png
by default setting) and substitute them for original figures. In the LaTeX builder, a suitable language will be selected as an option for the Babel package.Добавлено в версии 0.5.
Изменено в версии 1.4: Support figure substitution
Изменено в версии 5.0: The default is now
'en'
(previouslyNone
).Currently supported languages by Sphinx are:
ar
– Arabicbg
– Bulgarianbn
– Bengalica
– Catalancak
– Kaqchikelcs
– Czechcy
– Welshda
– Danishde
– Germanel
– Greeken
– English (default)eo
– Esperantoes
– Spanishet
– Estonianeu
– Basquefa
– Iranianfi
– Finnishfr
– Frenchhe
– Hebrewhi
– Hindihi_IN
– Hindi (India)hr
– Croatianhu
– Hungarianid
– Indonesianit
– Italianja
– Japaneseko
– Koreanlt
– Lithuanianlv
– Latvianmk
– Macedoniannb_NO
– Norwegian Bokmalne
– Nepalinl
– Dutchpl
– Polishpt
– Portuguesept_BR
– Brazilian Portuguesept_PT
– European Portuguesero
– Romanianru
– Russiansi
– Sinhalask
– Slovaksl
– Sloveniansq
– Albaniansr
– Serbiansr@latin
– Serbian (Latin)sr_RS
– Serbian (Cyrillic)sv
– Swedishta
– Tamilte
– Telugutr
– Turkishuk_UA
– Ukrainianur
– Urduvi
– Vietnamesezh_CN
– Simplified Chinesezh_TW
– Traditional Chinese
- locale_dirs¶
- Тип:
list[str]
- По умолчанию:
['locales']
Directories in which to search for additional message catalogs (see
language
), relative to the source directory. The directories on this path are searched by thegettext
module.Internal messages are fetched from a text domain of
sphinx
; so if you add the directory./locales
to this setting, the message catalogs (compiled from.po
format using msgfmt) must be in./locales/language/LC_MESSAGES/sphinx.mo
. The text domain of individual documents depends ongettext_compact
.Примечание
The
-v option to sphinx-build
is useful to check thelocale_dirs
setting is working as expected. If the message catalog directory not found, debug messages are emitted.Добавлено в версии 0.5.
Изменено в версии 1.5: Use
locales
directory as a default value
- gettext_allow_fuzzy_translations¶
- Тип:
bool
- По умолчанию:
False
If True, «fuzzy» messages in the message catalogs are used for translation.
Добавлено в версии 4.3.
- gettext_compact¶
- Тип:
bool | str
- По умолчанию:
True
If
True
, a document’s text domain is its docname if it is a top-level project file and its very base directory otherwise.If
False
, a document’s text domain is the docname, in full.If set to a string, every document’s text domain is set to this string, making all documents use single text domain.
With
gettext_compact = True
, the documentmarkup/code.rst
ends up in themarkup
text domain. With this option set toFalse
, it ismarkup/code
. With this option set to'sample'
, it issample
.Добавлено в версии 1.1.
Изменено в версии 3.3: Allow string values.
- gettext_uuid¶
- Тип:
bool
- По умолчанию:
False
If
True
, Sphinx generates UUID information for version tracking in message catalogs. It is used to:Add a UUID line for each msgid in
.pot
files.Calculate similarity between new msgids and previously saved old msgids. (This calculation can take a long time.)
Совет
If you want to accelerate the calculation, you can use a third-party package (Levenshtein) by running pip install levenshtein.
Добавлено в версии 1.3.
- gettext_location¶
- Тип:
bool
- По умолчанию:
True
If
True
, Sphinx generates location information for messages in message catalogs.Добавлено в версии 1.3.
- gettext_auto_build¶
- Тип:
bool
- По умолчанию:
True
If
True
, Sphinx builds a.mo
file for each translation catalog file.Добавлено в версии 1.3.
- gettext_additional_targets¶
- Тип:
set[str] | Sequence[str]
- По умолчанию:
[]
Enable
gettext
translation for certain element types. Example:gettext_additional_targets = {'literal-block', 'image'}
The following element types are supported:
'index'
– index terms'literal-block'
– literal blocks (::
annotation andcode-block
directive)'doctest-block'
– doctest block'raw'
– raw content'image'
– image/figure uri
Добавлено в версии 1.3.
Изменено в версии 4.0: The alt text for images is translated by default.
Изменено в версии 7.4: Permit and prefer a set type.
- figure_language_filename¶
- Тип:
str
- По умолчанию:
'{root}.{language}{ext}'
The filename format for language-specific figures. The available format tokens are:
{root}
: the filename, including any path component, without the file extension. For example:images/filename
.{path}
: the directory path component of the filename, with a trailing slash if non-empty. For example:images/
.{basename}
: the filename without the directory path or file extension components. For example:filename
.{ext}
: the file extension. For example:.png
.{language}
: the translation language. For example:en
.{docpath}
: the directory path component for the current document, with a trailing slash if non-empty. For example:dirname/
.
By default, an image directive
.. image:: images/filename.png
, using an image atimages/filename.png
, will use the language-specific figure filenameimages/filename.en.png
.If
figure_language_filename
is set as below, the language-specific figure filename will beimages/en/filename.png
instead.figure_language_filename = '{path}{language}/{basename}{ext}'
Добавлено в версии 1.4.
Изменено в версии 1.5: Added
{path}
and{basename}
tokens.Изменено в версии 3.2: Added
{docpath}
token.
- translation_progress_classes¶
- Тип:
bool | 'translated' | 'untranslated'
- По умолчанию:
False
Control which, if any, classes are added to indicate translation progress. This setting would likely only be used by translators of documentation, in order to quickly indicate translated and untranslated content.
True
Add
translated
anduntranslated
classes to all nodes with translatable content.'translated'
Only add the
translated
class.'untranslated'
Only add the
untranslated
class.False
Do not add any classes to indicate translation progress.
Добавлено в версии 7.1.
Options for markup¶
- default_role¶
- Тип:
str
- По умолчанию:
None
The name of a reStructuredText role (builtin or Sphinx extension) to use as the default role, that is, for text marked up
`like this`
. This can be set to'py:obj'
to make`filter`
a cross-reference to the Python function «filter».The default role can always be set within individual documents using the standard reStructuredText default-role directive.
Добавлено в версии 0.4.
- keep_warnings¶
- Тип:
bool
- По умолчанию:
False
Keep warnings as «system message» paragraphs in the rendered documents. Warnings are always written to the standard error stream when sphinx-build is run, regardless of this setting.
Добавлено в версии 0.5.
- option_emphasise_placeholders¶
- Тип:
bool
- По умолчанию:
False
When enabled, emphasise placeholders in
option
directives. To display literal braces, escape with a backslash (\{
). For example,option_emphasise_placeholders=True
and.. option:: -foption={TYPE}
would render withTYPE
emphasised.Добавлено в версии 5.1.
- primary_domain¶
- Тип:
str
- По умолчанию:
'py'
The name of the default domain. Can also be
None
to disable a default domain. The default is'py'
, for the Python domain.Those objects in other domain (whether the domain name is given explicitly, or selected by a
default-domain
directive) will have the domain name explicitly prepended when named (e.g., when the default domain is C, Python functions will be named «Python function», not just «function»). Example:primary_domain = 'cpp'
Добавлено в версии 1.0.
- rst_epilog¶
- Тип:
str
- По умолчанию:
''
A string of reStructuredText that will be included at the end of every source file that is read. This is a possible place to add substitutions that should be available in every file (another being
rst_prolog
). Example:rst_epilog = """ .. |psf| replace:: Python Software Foundation """
Добавлено в версии 0.6.
- rst_prolog¶
- Тип:
str
- По умолчанию:
''
A string of reStructuredText that will be included at the beginning of every source file that is read. This is a possible place to add substitutions that should be available in every file (another being
rst_epilog
). Example:rst_prolog = """ .. |psf| replace:: Python Software Foundation """
Добавлено в версии 1.0.
- show_authors¶
- Тип:
bool
- По умолчанию:
False
A boolean that decides whether
codeauthor
andsectionauthor
directives produce any output in the built files.
- trim_footnote_reference_space¶
- Тип:
bool
- По умолчанию:
False
Trim spaces before footnote references that are necessary for the reStructuredText parser to recognise the footnote, but do not look too nice in the output.
Добавлено в версии 0.6.
Options for Maths¶
These options control maths markup and notation.
- math_eqref_format¶
- Тип:
str
- По умолчанию:
'({number})'
A string used for formatting the labels of references to equations. The
{number}
place-holder stands for the equation number.Example:
'Eq.{number}'
gets rendered as, for example,Eq.10
.Добавлено в версии 1.7.
- math_number_all¶
- Тип:
bool
- По умолчанию:
False
Force all displayed equations to be numbered. Example:
math_number_all = True
Добавлено в версии 1.4.
- math_numfig¶
- Тип:
bool
- По умолчанию:
True
If
True
, displayed math equations are numbered across pages whennumfig
is enabled. Thenumfig_secnum_depth
setting is respected. Theeq
, notnumref
, role must be used to reference equation numbers.Добавлено в версии 1.7.
- math_numsep¶
- Тип:
str
- По умолчанию:
'.'
A string that defines the separator between section numbers and the equation number when
numfig
is enabled andnumfig_secnum_depth
is positive.Example:
'-'
gets rendered as1.2-3
.Добавлено в версии 7.4.
Options for the nitpicky mode¶
- nitpicky¶
- Тип:
bool
- По умолчанию:
False
Enables nitpicky mode if
True
. In nitpicky mode, Sphinx will warn about all references where the target cannot be found. This is recommended for new projects as it ensures that all references are to valid targets.You can activate this mode temporarily using the
--nitpicky
command-line option. Seenitpick_ignore
for a way to mark missing references as «known missing».nitpicky = True
Добавлено в версии 1.0.
- nitpick_ignore¶
- Тип:
set[tuple[str, str]] | Sequence[tuple[str, str]]
- По умолчанию:
()
A set or list of
(warning_type, target)
tuples that should be ignored when generating warnings in"nitpicky mode"
. Note thatwarning_type
should include the domain name if present. Example:nitpick_ignore = { ('py:func', 'int'), ('envvar', 'LD_LIBRARY_PATH'), }
Добавлено в версии 1.1.
Изменено в версии 6.2: Changed allowable container types to a set, list, or tuple
- nitpick_ignore_regex¶
- Тип:
set[tuple[str, str]] | Sequence[tuple[str, str]]
- По умолчанию:
()
An extended version of
nitpick_ignore
, which instead interprets thewarning_type
andtarget
strings as regular expressions. Note that the regular expression must match the whole string (as if the^
and$
markers were inserted).For example,
(r'py:.*', r'foo.*bar\.B.*')
will ignore nitpicky warnings for all python entities that start with'foo'
and have'bar.B'
in them, such as('py:const', 'foo_package.bar.BAZ_VALUE')
or('py:class', 'food.bar.Barman')
.Добавлено в версии 4.1.
Изменено в версии 6.2: Changed allowable container types to a set, list, or tuple
Options for object signatures¶
- add_function_parentheses¶
- Тип:
bool
- По умолчанию:
True
A boolean that decides whether parentheses are appended to function and method role text (e.g. the content of
:func:`input`
) to signify that the name is callable.
- maximum_signature_line_length¶
- Тип:
int | None
- По умолчанию:
None
If a signature’s length in characters exceeds the number set, each parameter within the signature will be displayed on an individual logical line.
When
None
, there is no maximum length and the entire signature will be displayed on a single logical line.A „logical line“ is similar to a hard line break—builders or themes may choose to „soft wrap“ a single logical line, and this setting does not affect that behaviour.
Domains may provide options to suppress any hard wrapping on an individual object directive, such as seen in the C, C++, and Python domains (e.g.
py:function:single-line-parameter-list
).Добавлено в версии 7.1.
- strip_signature_backslash¶
- Тип:
bool
- По умолчанию:
False
When backslash stripping is enabled then every occurrence of
\\
in a domain directive will be changed to\
, even within string literals. This was the behaviour before version 3.0, and setting this variable toTrue
will reinstate that behaviour.Добавлено в версии 3.0.
- toc_object_entries¶
- Тип:
bool
- По умолчанию:
True
Create table of contents entries for domain objects (e.g. functions, classes, attributes, etc.).
Добавлено в версии 5.2.
- toc_object_entries_show_parents¶
- Тип:
'domain' | 'hide' | 'all'
- По умолчанию:
'domain'
A string that determines how domain objects (functions, classes, attributes, etc.) are displayed in their table of contents entry.
Use
'domain'
to allow the domain to determine the appropriate number of parents to show. For example, the Python domain would showClass.method()
andfunction()
, leaving out themodule.
level of parents.Use
'hide'
to only show the name of the element without any parents (i.e.method()
).Use
'all'
to show the fully-qualified name for the object (i.e.module.Class.method()
), displaying all parents.Добавлено в версии 5.2.
Options for source files¶
- exclude_patterns¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of glob-style patterns that should be excluded when looking for source files. They are matched against the source file names relative to the source directory, using slashes as directory separators on all platforms.
exclude_patterns
has priority overinclude_patterns
.Примеры шаблонов:
'library/xml.rst'
– ignores thelibrary/xml.rst
file'library/xml'
– ignores thelibrary/xml
directory'library/xml*'
– ignores all files and directories starting withlibrary/xml
'**/.git'
– ignores all.git
directories'Thumbs.db'
– ignores allThumbs.db
files
exclude_patterns
is also consulted when looking for static files inhtml_static_path
andhtml_extra_path
.Добавлено в версии 1.0.
- include_patterns¶
- Тип:
Sequence[str]
- По умолчанию:
('**',)
A list of glob-style patterns that are used to find source files. They are matched against the source file names relative to the source directory, using slashes as directory separators on all platforms. By default, all files are recursively included from the source directory.
exclude_patterns
has priority overinclude_patterns
.Примеры шаблонов:
'**'
– all files in the source directory and subdirectories, recursively'library/xml'
– just thelibrary/xml
directory'library/xml*'
– all files and directories starting withlibrary/xml
'**/doc'
– alldoc
directories (this might be useful if documentation is co-located with source files)
Добавлено в версии 5.1.
- master_doc¶
- root_doc¶
- Тип:
str
- По умолчанию:
'index'
Sphinx builds a tree of documents based on the
toctree
directives contained within the source files. This sets the name of the document containing the mastertoctree
directive, and hence the root of the entire tree. Example:master_doc = 'contents'
Изменено в версии 2.0: Default is
'index'
(previously'contents'
).Добавлено в версии 4.0: The
root_doc
alias.
- source_encoding¶
- Тип:
str
- По умолчанию:
'utf-8-sig'
The file encoding of all source files. The recommended encoding is
'utf-8-sig'
.Добавлено в версии 0.5.
- source_suffix¶
- Тип:
dict[str, str] | Sequence[str] | str
- По умолчанию:
{'.rst': 'restructuredtext'}
A dictionary mapping the file extensions (suffixes) of source files to their file types. Sphinx considers all files files with suffixes in
source_suffix
to be source files. Example:source_suffix = { '.rst': 'restructuredtext', '.txt': 'restructuredtext', '.md': 'markdown', }
By default, Sphinx only supports the
'restructuredtext'
file type. Further file types can be added with extensions that register different source file parsers, such as MyST-Parser. Refer to the extension’s documentation to see which file types it supports.If the value is a string or sequence of strings, Sphinx will consider that they are all
'restructuredtext'
files.Примечание
File extensions must begin with a dot (
'.'
).Изменено в версии 1.3: Support a list of file extensions.
Изменено в версии 1.8: Change to a map of file extensions to file types.
Options for smart quotes¶
- smartquotes¶
- Тип:
bool
- По умолчанию:
True
If
True
, the Smart Quotes transform will be used to convert quotation marks and dashes to typographically correct entities.Добавлено в версии 1.6.6: Replaces the now-removed
html_use_smartypants
. It applies by default to all builders exceptman
andtext
(seesmartquotes_excludes
.)Примечание
A docutils.conf file located in the configuration directory (or a global
~/.docutils
file) is obeyed unconditionally if it deactivates smart quotes via the corresponding Docutils option. But if it activates them, thensmartquotes
does prevail.
- smartquotes_action¶
- Тип:
str
- По умолчанию:
'qDe'
Customise the Smart Quotes transform. See below for the permitted codes. The default
'qDe'
educates normal quote characters"
,'
, em- and en-Dashes---
,--
, and ellipses...
..'q'
Convert quotation marks
'b'
Convert backtick quotation marks (
``double''
only)'B'
Convert backtick quotation marks (
``double''
and`single'
)'d'
Convert dashes (convert
--
to em-dashes and---
to en-dashes)'D'
Convert dashes (old school) (convert
--
to en-dashes and---
to em-dashes)'i'
Convert dashes (inverted old school) (convert
--
to em-dashes and---
to en-dashes)'e'
Convert ellipses
...
'w'
Convert
'"'
entities to'"'
Добавлено в версии 1.6.6.
- smartquotes_excludes¶
- Тип:
dict[str, list[str]]
- По умолчанию:
{'languages': ['ja'], 'builders': ['man', 'text']}
Control when the Smart Quotes transform is disabled. Permitted keys are
'builders'
and'languages'
, and The values are lists of strings.Each entry gives a sufficient condition to ignore the
smartquotes
setting and deactivate the Smart Quotes transform. Example:smartquotes_excludes = { 'languages': ['ja'], 'builders': ['man', 'text'], }
Примечание
Currently, in case of invocation of make with multiple targets, the first target name is the only one which is tested against the
'builders'
entry and it decides for all. Also, amake text
followingmake html
needs to be issued in the formmake text SPHINXOPTS="-E"
to force re-parsing of source files, as the cached ones are already transformed. On the other hand the issue does not arise with direct usage of sphinx-build as it caches (in its default usage) the parsed source files in per builder locations.Подсказка
An alternative way to effectively deactivate (or customise) the smart quotes for a given builder, for example
latex
, is to usemake
this way:make latex SPHINXOPTS="-D smartquotes_action="
This can follow some
make html
with no problem, in contrast to the situation from the prior note.Добавлено в версии 1.6.6.
Options for templating¶
- template_bridge¶
- Тип:
str
- По умолчанию:
''
A string with the fully-qualified name of a callable (or simply a class) that returns an instance of
TemplateBridge
. This instance is then used to render HTML documents, and possibly the output of other builders (currently the changes builder). (Note that the template bridge must be made theme-aware if HTML themes are to be used.) Example:template_bridge = 'module.CustomTemplateBridge'
- templates_path¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of paths that contain extra templates (or templates that overwrite builtin/theme-specific templates). Relative paths are taken as relative to the configuration directory. Example:
templates_path = ['.templates']
Изменено в версии 1.3: As these files are not meant to be built, they are automatically excluded when discovering source files.
Options for warning control¶
- show_warning_types¶
- Тип:
bool
- По умолчанию:
True
Add the type of each warning as a suffix to the warning message. For example,
WARNING: [...] [index]
orWARNING: [...] [toc.circular]
. This setting can be useful for determining which warnings types to include in asuppress_warnings
list.Добавлено в версии 7.3.0.
Изменено в версии 8.0.0: The default is now
True
.
- suppress_warnings¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of warning codes to suppress arbitrary warning messages.
By default, Sphinx supports the following warning codes:
app.add_node
app.add_directive
app.add_role
app.add_generic_role
app.add_source_parser
config.cache
docutils
download.not_readable
epub.unknown_project_files
epub.duplicated_toc_entry
i18n.inconsistent_references
index
image.not_readable
ref.term
ref.ref
ref.numref
ref.keyword
ref.option
ref.citation
ref.footnote
ref.doc
ref.python
misc.copy_overwrite
misc.highlighting_failure
toc.circular
toc.excluded
toc.no_title
toc.not_readable
toc.secnum
Extensions can also define their own warning types. Those defined by the first-party
sphinx.ext
extensions are:autodoc
autodoc.import_object
autosectionlabel.<document name>
autosummary
autosummary.import_cycle
intersphinx.external
You can choose from these types. You can also give only the first component to exclude all warnings attached to it.
Добавлено в версии 1.4.
Изменено в версии 1.5: Added
misc.highlighting_failure
Изменено в версии 1.5.1: Added
epub.unknown_project_files
Изменено в версии 1.6: Added
ref.footnote
Изменено в версии 2.1: Added
autosectionlabel.<document name>
Изменено в версии 3.3.0: Added
epub.duplicated_toc_entry
Изменено в версии 4.3: Added
toc.excluded
andtoc.not_readable
Добавлено в версии 4.5: Added
i18n.inconsistent_references
Добавлено в версии 7.1: Added
index
.Добавлено в версии 7.3: Added
config.cache
.Добавлено в версии 7.3: Added
toc.no_title
.Добавлено в версии 8.0: Added
misc.copy_overwrite
.
Builder options¶
Options for HTML output¶
These options influence HTML output. Various other builders are derived from the HTML output, and also make use of these options.
- html_theme¶
- Тип:
str
- По умолчанию:
'alabaster'
The theme for HTML output. See the HTML theming section.
Добавлено в версии 0.6.
Изменено в версии 1.3: The default theme is now
'alabaster'
.
- html_theme_options¶
- Тип:
dict[str, Any]
- По умолчанию:
{}
A dictionary of options that influence the look and feel of the selected theme. These are theme-specific. The options understood by the builtin themes are described here.
Добавлено в версии 0.6.
- html_theme_path¶
- Тип:
list[str]
- По умолчанию:
[]
A list of paths that contain custom themes, either as subdirectories or as zip files. Relative paths are taken as relative to the configuration directory.
Добавлено в версии 0.6.
- html_style¶
- Тип:
Sequence[str] | str
- По умолчанию:
()
Stylesheets to use for HTML pages. The stylesheet given by the selected theme is used by default A file of that name must exist either in Sphinx’s
static/
path or in one of the custom paths given inhtml_static_path
. If you only want to add or override a few things from the theme, use CSS@import
to import the theme’s stylesheet.Изменено в версии 5.1: The value can be a iterable of strings.
- html_title¶
- Тип:
str
- По умолчанию:
'project release documentation'
The «title» for HTML documentation generated with Sphinx’s own templates. This is appended to the
<title>
tag of individual pages, and used in the navigation bar as the «topmost» element.
- html_short_title¶
- Тип:
str
- По умолчанию:
- The value of html_title
A shorter «title» for HTML documentation. This is used for links in the header and in the HTML Help documentation.
Добавлено в версии 0.4.
- html_baseurl¶
- Тип:
str
- По умолчанию:
''
The base URL which points to the root of the HTML documentation. It is used to indicate the location of document using the Canonical Link Relation.
Добавлено в версии 1.8.
- html_codeblock_linenos_style¶
- Тип:
'inline' | 'table'
- По умолчанию:
'inline'
The style of line numbers for code-blocks.
'table'
Display line numbers using
<table>
tag'inline'
Display line numbers using
<span>
tag
Добавлено в версии 3.2.
Изменено в версии 4.0: It defaults to
'inline'
.Устарело, начиная с версии 4.0.
- html_context¶
- Тип:
dict[str, Any]
- По умолчанию:
{}
A dictionary of values to pass into the template engine’s context for all pages. Single values can also be put in this dictionary using sphinx-build’s
--html-define
command-line option.Добавлено в версии 0.5.
- html_logo¶
- Тип:
str
- По умолчанию:
''
If given, this must be the name of an image file (path relative to the configuration directory) that is the logo of the documentation, or a URL that points an image file for the logo. It is placed at the top of the sidebar; its width should therefore not exceed 200 pixels.
Добавлено в версии 0.4.1: The image file will be copied to the
_static
directory, but only if the file does not already exist there.Изменено в версии 4.0: Also accepts a URL.
- html_favicon¶
- Тип:
str
- По умолчанию:
''
If given, this must be the name of an image file (path relative to the configuration directory) that is the favicon of the documentation, or a URL that points an image file for the favicon. Browsers use this as the icon for tabs, windows and bookmarks. It should be a 16-by-16 pixel icon in the PNG, SVG, GIF, or ICO file formats.
Example:
html_favicon = 'static/favicon.png'
Добавлено в версии 0.4: The image file will be copied to the
_static
, but only if the file does not already exist there.Изменено в версии 4.0: Also accepts the URL for the favicon.
- html_css_files¶
- Тип:
Sequence[str | tuple[str, dict[str, str]]]
- По умолчанию:
[]
A list of CSS files. The entry must be a filename string or a tuple containing the filename string and the attributes dictionary. The filename must be relative to the
html_static_path
, or a full URI with scheme like'https://example.org/style.css'
. The attributes dictionary is used for the<link>
tag’s attributes.Example:
html_css_files = [ 'custom.css', 'https://example.com/css/custom.css', ('print.css', {'media': 'print'}), ]
The special attribute priority can be set as an integer to load the CSS file at an earlier or later step. For more information, refer to
Sphinx.add_css_file()
.Добавлено в версии 1.8.
Изменено в версии 3.5: Support the priority attribute
- html_js_files¶
- Тип:
Sequence[str | tuple[str, dict[str, str]]]
- По умолчанию:
[]
A list of JavaScript files. The entry must be a filename string or a tuple containing the filename string and the attributes dictionary. The filename must be relative to the
html_static_path
, or a full URI with scheme like'https://example.org/script.js'
. The attributes dictionary is used for the<script>
tag’s attributes.Example:
html_js_files = [ 'script.js', 'https://example.com/scripts/custom.js', ('custom.js', {'async': 'async'}), ]
As a special attribute, priority can be set as an integer to load the JavaScript file at an earlier or later step. For more information, refer to
Sphinx.add_js_file()
.Добавлено в версии 1.8.
Изменено в версии 3.5: Support the priority attribute
- html_static_path¶
- Тип:
list[str]
- По умолчанию:
[]
A list of paths that contain custom static files (such as style sheets or script files). Relative paths are taken as relative to the configuration directory. They are copied to the output’s
_static
directory after the theme’s static files, so a file nameddefault.css
will overwrite the theme’sdefault.css
.As these files are not meant to be built, they are automatically excluded from source files.
Примечание
For security reasons, dotfiles under
html_static_path
will not be copied. If you would like to copy them intentionally, explicitly add each file to this setting:html_static_path = ['_static', '_static/.htaccess']
An alternative approach is to use
html_extra_path
, which allows copying dotfiles under the directories.Изменено в версии 0.4: The paths in
html_static_path
can now contain subdirectories.Изменено в версии 1.0: The entries in
html_static_path
can now be single files.Изменено в версии 1.8: The files under
html_static_path
are excluded from source files.
- html_extra_path¶
- Тип:
list[str]
- По умолчанию:
[]
A list of paths that contain extra files not directly related to the documentation, such as
robots.txt
or.htaccess
. Relative paths are taken as relative to the configuration directory. They are copied to the output directory. They will overwrite any existing file of the same name.As these files are not meant to be built, they are automatically excluded from source files.
Добавлено в версии 1.2.
Изменено в версии 1.4: The dotfiles in the extra directory will be copied to the output directory. And it refers
exclude_patterns
on copying extra files and directories, and ignores if path matches to patterns.
- html_last_updated_fmt¶
- Тип:
str
- По умолчанию:
None
If set, a „Last updated on:“ timestamp is inserted into the page footer using the given
strftime()
format. The empty string is equivalent to'%b %d, %Y'
(or a locale-dependent equivalent).
- html_last_updated_use_utc¶
- Тип:
bool
- По умолчанию:
False
Use GMT/UTC (+00:00) instead of the system’s local time zone for the time supplied to
html_last_updated_fmt
. This is most useful when the format used includes the time.
- html_permalinks¶
- Тип:
bool
- По умолчанию:
True
Add link anchors for each heading and description environment.
Добавлено в версии 3.5.
- html_permalinks_icon¶
- Тип:
str
- По умолчанию:
'¶'
(the paragraph sign)
Text for link anchors for each heading and description environment. HTML entities and Unicode are allowed.
Добавлено в версии 3.5.
- html_sidebars¶
- Тип:
dict[str, Sequence[str]]
- По умолчанию:
{}
A dictionary defining custom sidebar templates, mapping document names to template names.
The keys can contain glob-style patterns, in which case all matching documents will get the specified sidebars. (A warning is emitted when a more than one glob-style pattern matches for any document.)
Each value must be a list of strings which specifies the complete list of sidebar templates to include. If all or some of the default sidebars are to be included, they must be put into this list as well.
The default sidebars (for documents that don’t match any pattern) are defined by theme itself. The builtin themes use these templates by default:
'localtoc.html'
,'relations.html'
,'sourcelink.html'
, and'searchbox.html'
.The bundled first-party sidebar templates that can be rendered are:
localtoc.html – a fine-grained table of contents of the current document
globaltoc.html – a coarse-grained table of contents for the whole documentation set, collapsed
relations.html – two links to the previous and next documents
sourcelink.html – a link to the source of the current document, if enabled in
html_show_sourcelink
searchbox.html – the «quick search» box
Example:
html_sidebars = { '**': ['globaltoc.html', 'sourcelink.html', 'searchbox.html'], 'using/windows': ['windows-sidebar.html', 'searchbox.html'], }
This will render the custom template
windows-sidebar.html
and the quick search box within the sidebar of the given document, and render the default sidebars for all other pages (except that the local TOC is replaced by the global TOC).Note that this value only has no effect if the chosen theme does not possess a sidebar, like the builtin scrolls and haiku themes.
Добавлено в версии 1.0: The ability to use globbing keys and to specify multiple sidebars.
Устарело, начиная с версии 1.7: A single string value for
html_sidebars
will be removed.Изменено в версии 2.0:
html_sidebars
must be a list of strings, and no longer accepts a single string value.
- html_additional_pages¶
- Тип:
dict[str, str]
- По умолчанию:
{}
Additional templates that should be rendered to HTML pages, must be a dictionary that maps document names to template names.
Example:
html_additional_pages = { 'download': 'custom-download.html.jinja', }
This will render the template
custom-download.html.jinja
as the pagedownload.html
.
- html_domain_indices¶
- Тип:
bool | Sequence[str]
- По умолчанию:
True
If True, generate domain-specific indices in addition to the general index. For e.g. the Python domain, this is the global module index.
This value can be a Boolean or a list of index names that should be generated. To find out the index name for a specific index, look at the HTML file name. For example, the Python module index has the name
'py-modindex'
.Example:
html_domain_indices = { 'py-modindex', }
Добавлено в версии 1.0.
Изменено в версии 7.4: Permit and prefer a set type.
- html_use_index¶
- Тип:
bool
- По умолчанию:
True
Controls if an index is added to the HTML documents.
Добавлено в версии 0.4.
- html_split_index¶
- Тип:
bool
- По умолчанию:
False
Generates two versions of the index: once as a single page with all the entries, and once as one page per starting letter.
Добавлено в версии 0.4.
- html_copy_source¶
- Тип:
bool
- По умолчанию:
True
If True, the reStructuredText sources are included in the HTML build as
_sources/docname
.
- html_show_sourcelink¶
- Тип:
bool
- По умолчанию:
True
If True (and
html_copy_source
is true as well), links to the reStructuredText sources will be added to the sidebar.Добавлено в версии 0.6.
- html_sourcelink_suffix¶
- Тип:
str
- По умолчанию:
'.txt'
The suffix to append to source links (see
html_show_sourcelink
), unless files they have this suffix already.Добавлено в версии 1.5.
- html_use_opensearch¶
- Тип:
str
- По умолчанию:
''
If nonempty, an OpenSearch description file will be output, and all pages will contain a
<link>
tag referring to it. Since OpenSearch doesn’t support relative URLs for its search page location, the value of this option must be the base URL from which these documents are served (without trailing slash), e.g.'https://docs.python.org'
.Добавлено в версии 0.2.
- html_file_suffix¶
- Тип:
str
- По умолчанию:
'.html'
The file name suffix (file extension) for generated HTML files.
Добавлено в версии 0.4.
- html_link_suffix¶
- Тип:
str
- По умолчанию:
- The value of html_file_suffix
The suffix for generated links to HTML files. Intended to support more esoteric server setups.
Добавлено в версии 0.6.
- html_show_copyright¶
- Тип:
bool
- По умолчанию:
True
If True, «© Copyright …» is shown in the HTML footer, with the value or values from
copyright
.Добавлено в версии 1.0.
- html_show_search_summary¶
- Тип:
bool
- По умолчанию:
True
Show a summary of the search result, i.e., the text around the keyword.
Добавлено в версии 4.5.
- html_show_sphinx¶
- Тип:
bool
- По умолчанию:
True
Add «Created using Sphinx» to the HTML footer.
Добавлено в версии 0.4.
- html_output_encoding¶
- Тип:
str
- По умолчанию:
'utf-8'
Encoding of HTML output files. This encoding name must both be a valid Python encoding name and a valid HTML
charset
value.Добавлено в версии 1.0.
- html_compact_lists¶
- Тип:
bool
- По умолчанию:
True
If True, a list all whose items consist of a single paragraph and/or a sub-list all whose items etc… (recursive definition) will not use the
<p>
element for any of its items. This is standard docutils behaviour. Default:True
.Добавлено в версии 1.0.
- html_secnumber_suffix¶
- Тип:
str
- По умолчанию:
'. '
Suffix for section numbers in HTML output. Set to
' '
to suppress the final dot on section numbers.Добавлено в версии 1.0.
- html_search_language¶
- Тип:
str
- По умолчанию:
- The value of language
Language to be used for generating the HTML full-text search index. This defaults to the global language selected with
language
. English ('en'
) is used as a fall-back option if there is no support for this language.Support exists for the following languages:
da
– Danishnl
– Dutchen
– Englishfi
– Finnishfr
– Frenchde
– Germanhu
– Hungarianit
– Italianja
– Japaneseno
– Norwegianpt
– Portuguesero
– Romanianru
– Russianes
– Spanishsv
– Swedishtr
– Turkishzh
– Chinese
Совет
Accelerating build speed
Each language (except Japanese) provides its own stemming algorithm. Sphinx uses a Python implementation by default. If you want to accelerate building the index file, you can use a third-party package (PyStemmer) by running pip install PyStemmer.
Добавлено в версии 1.1: Support English (
en
) and Japanese (ja
).Изменено в версии 1.3: Added additional languages.
- html_search_options¶
- Тип:
dict[str, str]
- По умолчанию:
{}
A dictionary with options for the search language support. The meaning of these options depends on the language selected. Currently, only Japanese and Chinese support options.
- Japanese:
type
– the type of the splitter to use.The other options depend on the splitter used.
'sphinx.search.ja.DefaultSplitter'
The TinySegmenter algorithm, used by default.
'sphinx.search.ja.MecabSplitter'
:The MeCab binding To use this splitter, the „mecab“ python binding or dynamic link library („libmecab.so“ for Linux, „libmecab.dll“ for Windows) is required.
'sphinx.search.ja.JanomeSplitter'
:The Janome binding. To use this splitter, Janome is required.
Устарело, начиная с версии 1.6:
'mecab'
,'janome'
and'default'
is deprecated. To keep compatibility,'mecab'
,'janome'
and'default'
are also acceptable.- Options for
'mecab'
: - dic_enc:
dic_enc option is the encoding for the MeCab algorithm.
- dict:
dict option is the dictionary to use for the MeCab algorithm.
- lib:
lib option is the library name for finding the MeCab library via
ctypes
if the Python binding is not installed.
Например:
html_search_options = { 'type': 'mecab', 'dic_enc': 'utf-8', 'dict': '/path/to/mecab .dic', 'lib': '/path/to/libmecab.so', }
- Options for
'janome'
: - user_dic:
user_dic option is the user dictionary file path for Janome.
- user_dic_enc:
user_dic_enc option is the encoding for the user dictionary file specified by
user_dic
option. Default is „utf8“.
- Chinese:
dict
The
jieba
dictionary path for using a custom dictionary.
Добавлено в версии 1.1.
Изменено в версии 1.4: Allow any custom splitter in the type setting for Japanese.
- html_search_scorer¶
- Тип:
str
- По умолчанию:
''
The name of a JavaScript file (relative to the configuration directory) that implements a search results scorer. If empty, the default will be used.
The scorer must implement the following interface, and may optionally define the
score()
function for more granular control.const Scorer = { // Implement the following function to further tweak the score for each result score: result => { const [docName, title, anchor, descr, score, filename] = result // ... calculate a new score ... return score }, // query matches the full name of an object objNameMatch: 11, // or matches in the last dotted part of the object name objPartialMatch: 6, // Additive scores depending on the priority of the object objPrio: { 0: 15, // used to be importantResults 1: 5, // used to be objectResults 2: -5, // used to be unimportantResults }, // Used when the priority is not in the mapping. objPrioDefault: 0, // query found in title title: 15, partialTitle: 7, // query found in terms term: 5, partialTerm: 2, };
Добавлено в версии 1.2.
- html_scaled_image_link¶
- Тип:
bool
- По умолчанию:
True
Link images that have been resized with a scale option (scale, width, or height) to their original full-resolution image. This will not overwrite any link given by the target option on the the image directive, if present.
Совет
To disable this feature on a per-image basis, add the
no-scaled-link
class to the image directive:.. image:: sphinx.png :scale: 50% :class: no-scaled-link
Добавлено в версии 1.3.
Изменено в версии 3.0: Images with the
no-scaled-link
class will not be linked.
- html_math_renderer¶
- Тип:
str
- По умолчанию:
'mathjax'
The maths renderer to use for HTML output. The bundled renders are mathjax and imgmath. You must also load the relevant extension in
extensions
.Добавлено в версии 1.8.
Options for Single HTML output¶
These options influence Single HTML output. This builder derives from the HTML builder, so the HTML options also apply where appropriate.
- singlehtml_sidebars¶
- Тип:
dict[str, Sequence[str]]
- По умолчанию:
- The value of html_sidebars
A dictionary defining custom sidebar templates, mapping document names to template names.
This has the same effect as
html_sidebars
, but the only permitted key is'index'
, and all other keys are ignored.
Options for HTML help output¶
These options influence HTML help output. This builder derives from the HTML builder, so the HTML options also apply where appropriate.
- htmlhelp_basename¶
- Тип:
str
- По умолчанию:
'{project}doc'
Output file base name for HTML help builder. The default is the
project name
with spaces removed anddoc
appended.
- htmlhelp_file_suffix¶
- Тип:
str
- По умолчанию:
'.html'
This is the file name suffix for generated HTML help files.
Добавлено в версии 2.0.
- htmlhelp_link_suffix¶
- Тип:
str
- По умолчанию:
- The value of htmlhelp_file_suffix
Suffix for generated links to HTML files.
Добавлено в версии 2.0.
Options for Apple Help output¶
Добавлено в версии 1.3.
These options influence Apple Help output. This builder derives from the HTML builder, so the HTML options also apply where appropriate.
Примечание
Apple Help output will only work on Mac OS X 10.6 and higher, as it requires the hiutil and codesign command-line tools, neither of which are Open Source.
You can disable the use of these tools using
applehelp_disable_external_tools
,
but the result will not be a valid help book
until the indexer is run over the .lproj
directories within the bundle.
- applehelp_bundle_name¶
- Тип:
str
- По умолчанию:
- The value of project
The basename for the Apple Help Book. The default is the
project name
with spaces removed.
- applehelp_bundle_id¶
- Тип:
str
- По умолчанию:
None
The bundle ID for the help book bundle.
Предупреждение
You must set this value in order to generate Apple Help.
- applehelp_bundle_version¶
- Тип:
str
- По умолчанию:
'1'
The bundle version, as a string.
- applehelp_dev_region¶
- Тип:
str
- По умолчанию:
'en-us'
The development region. Defaults to Apple’s recommended setting,
'en-us'
.
- applehelp_icon¶
- Тип:
str
- По умолчанию:
None
Path to the help bundle icon file or
None
for no icon. According to Apple’s documentation, this should be a 16-by-16 pixel version of the application’s icon with a transparent background, saved as a PNG file.
- applehelp_kb_product¶
- Тип:
str
- По умолчанию:
'project-release'
The product tag for use with
applehelp_kb_url
.
- applehelp_kb_url¶
- Тип:
str
- По умолчанию:
None
The URL for your knowledgebase server, e.g.
https://example.com/kbsearch.py?p='product'&q='query'&l='lang'
. At runtime, Help Viewer will replace'product'
with the contents ofapplehelp_kb_product
,'query'
with the text entered by the user in the search box, and'lang'
with the user’s system language.Set this to to
None
to disable remote search.
- applehelp_remote_url¶
- Тип:
str
- По умолчанию:
None
The URL for remote content. You can place a copy of your Help Book’s
Resources
directory at this location and Help Viewer will attempt to use it to fetch updated content.For example, if you set it to
https://example.com/help/Foo/
and Help Viewer wants a copy ofindex.html
for an English speaking customer, it will look athttps://example.com/help/Foo/en.lproj/index.html
.Set this to to
None
for no remote content.
- applehelp_index_anchors¶
- Тип:
bool
- По умолчанию:
False
Tell the help indexer to index anchors in the generated HTML. This can be useful for jumping to a particular topic using the
AHLookupAnchor
function or theopenHelpAnchor:inBook:
method in your code. It also allows you to usehelp:anchor
URLs; see the Apple documentation for more information on this topic.
- applehelp_min_term_length¶
- Тип:
str
- По умолчанию:
None
Controls the minimum term length for the help indexer. If
None
, use the default length.
- applehelp_stopwords¶
- Тип:
str
- По умолчанию:
- The value of language
Either a language specification (to use the built-in stopwords), or the path to a stopwords plist, or
None
if you do not want to use stopwords. The default stopwords plist can be found at/usr/share/hiutil/Stopwords.plist
and contains, at time of writing, stopwords for the following languages:German (
de
)English (
en
)Spanish (
es
)French (
fr
)Hungarian (
hu
)Italian (
it
)Swedish (
sv
)
- applehelp_locale¶
- Тип:
str
- По умолчанию:
- The value of language
Specifies the locale to generate help for. This is used to determine the name of the
.lproj
directory inside the Help Book’sResources
, and is passed to the help indexer.
- applehelp_title¶
- Тип:
str
- По умолчанию:
'project Help'
Specifies the help book title.
- applehelp_codesign_identity¶
- Тип:
str
- По умолчанию:
- The value of CODE_SIGN_IDENTITY
Specifies the identity to use for code signing. Use
None
if code signing is not to be performed.Defaults to the value of the
CODE_SIGN_IDENTITY
environment variable, which is set by Xcode for script build phases, orNone
if that variable is not set.
- applehelp_codesign_flags¶
- Тип:
list[str]
- По умолчанию:
- The value of OTHER_CODE_SIGN_FLAGS
A list of additional arguments to pass to codesign when signing the help book.
Defaults to a list based on the value of the
OTHER_CODE_SIGN_FLAGS
environment variable, which is set by Xcode for script build phases, or the empty list if that variable is not set.
- applehelp_codesign_path¶
- Тип:
str
- По умолчанию:
'/usr/bin/codesign'
The path to the codesign program.
- applehelp_indexer_path¶
- Тип:
str
- По умолчанию:
'/usr/bin/hiutil'
The path to the hiutil program.
- applehelp_disable_external_tools¶
- Тип:
bool
- По умолчанию:
False
Do not run the indexer or the code signing tool, no matter what other settings are specified.
This is mainly useful for testing, or where you want to run the Sphinx build on a non-macOS platform and then complete the final steps on a Mac for some reason.
Options for EPUB output¶
These options influence EPUB output. This builder derives from the HTML builder, so the HTML options also apply where appropriate.
Примечание
The actual value for some of these options is not important, but they are required for the Dublin Core metadata.
- epub_basename¶
- Тип:
str
- По умолчанию:
- The value of project
The basename for the EPUB file.
- epub_theme¶
- Тип:
str
- По умолчанию:
'epub'
The HTML theme for the EPUB output. Since the default themes are not optimised for small screen space, using the same theme for HTML and EPUB output is usually not wise. This defaults to
'epub'
, a theme designed to save visual space.
- epub_theme_options¶
- Тип:
dict[str, Any]
- По умолчанию:
{}
A dictionary of options that influence the look and feel of the selected theme. These are theme-specific. The options understood by the builtin themes are described here.
Добавлено в версии 1.2.
- epub_title¶
- Тип:
str
- По умолчанию:
- The value of project
The title of the document.
Изменено в версии 2.0: It defaults to the
project
option (previouslyhtml_title
).
- epub_description¶
- Тип:
str
- По умолчанию:
'unknown'
The description of the document.
Добавлено в версии 1.4.
Изменено в версии 1.5: Renamed from
epub3_description
- epub_author¶
- Тип:
str
- По умолчанию:
- The value of author
The author of the document. This is put in the Dublin Core metadata.
- epub_contributor¶
- Тип:
str
- По умолчанию:
'unknown'
The name of a person, organisation, etc. that played a secondary role in the creation of the content of an EPUB Publication.
Добавлено в версии 1.4.
Изменено в версии 1.5: Renamed from
epub3_contributor
- epub_language¶
- Тип:
str
- По умолчанию:
- The value of language
The language of the document. This is put in the Dublin Core metadata.
- epub_publisher¶
- Тип:
str
- По умолчанию:
- The value of author
The publisher of the document. This is put in the Dublin Core metadata. You may use any sensible string, e.g. the project homepage.
- epub_copyright¶
- Тип:
str
- По умолчанию:
- The value of copyright
The copyright of the document. See
copyright
for permitted formats.
- epub_identifier¶
- Тип:
str
- По умолчанию:
'unknown'
An identifier for the document. This is put in the Dublin Core metadata. For published documents this is the ISBN number, but you can also use an alternative scheme, e.g. the project homepage.
- epub_scheme¶
- Тип:
str
- По умолчанию:
'unknown'
The publication scheme for the
epub_identifier
. This is put in the Dublin Core metadata. For published books the scheme is'ISBN'
. If you use the project homepage,'URL'
seems reasonable.
- epub_uid¶
- Тип:
str
- По умолчанию:
'unknown'
A unique identifier for the document. This is put in the Dublin Core metadata. You may use a XML’s Name format string. You can’t use hyphen, period, numbers as a first character.
- epub_cover¶
- Тип:
tuple[str, str]
- По умолчанию:
()
The cover page information. This is a tuple containing the filenames of the cover image and the html template. The rendered html cover page is inserted as the first item in the spine in
content.opf
. If the template filename is empty, no html cover page is created. No cover at all is created if the tuple is empty.Examples:
epub_cover = ('_static/cover.png', 'epub-cover.html') epub_cover = ('_static/cover.png', '') epub_cover = ()
Добавлено в версии 1.1.
- epub_css_files¶
- Тип:
Sequence[str | tuple[str, dict[str, str]]]
- По умолчанию:
[]
A list of CSS files. The entry must be a filename string or a tuple containing the filename string and the attributes dictionary. The filename must be relative to the
html_static_path
, or a full URI with scheme like'https://example.org/style.css'
. The attributes dictionary is used for the<link>
tag’s attributes. For more information, seehtml_css_files
.Добавлено в версии 1.8.
- epub_guide¶
- Тип:
Sequence[tuple[str, str, str]]
- По умолчанию:
()
Meta data for the guide element of
content.opf
. This is a sequence of tuples containing the type, the uri and the title of the optional guide information. See the OPF documentation for details. If possible, default entries for the cover and toc types are automatically inserted. However, the types can be explicitly overwritten if the default entries are not appropriate.Example:
epub_guide = ( ('cover', 'cover.html', 'Cover Page'), )
The default value is
()
.
- epub_pre_files¶
- Тип:
Sequence[tuple[str, str]]
- По умолчанию:
()
Additional files that should be inserted before the text generated by Sphinx. It is a list of tuples containing the file name and the title. If the title is empty, no entry is added to
toc.ncx
.Example:
epub_pre_files = [ ('index.html', 'Welcome'), ]
- epub_post_files¶
- Тип:
Sequence[tuple[str, str]]
- По умолчанию:
()
Additional files that should be inserted after the text generated by Sphinx. It is a list of tuples containing the file name and the title. This option can be used to add an appendix. If the title is empty, no entry is added to
toc.ncx
.Example:
epub_post_files = [ ('appendix.xhtml', 'Appendix'), ]
- epub_exclude_files¶
- Тип:
Sequence[str]
- По умолчанию:
[]
A sequence of files that are generated/copied in the build directory but should not be included in the EPUB file.
- epub_tocdepth¶
- Тип:
int
- По умолчанию:
3
The depth of the table of contents in the file
toc.ncx
. It should be an integer greater than zero.Совет
A deeply nested table of contents may be difficult to navigate.
- epub_tocdup¶
- Тип:
bool
- По умолчанию:
True
This flag determines if a ToC entry is inserted again at the beginning of its nested ToC listing. This allows easier navigation to the top of a chapter, but can be confusing because it mixes entries of different depth in one list.
- epub_tocscope¶
- Тип:
'default' | 'includehidden'
- По умолчанию:
'default'
This setting control the scope of the EPUB table of contents. The setting can have the following values:
'default'
Include all ToC entries that are not hidden
'includehidden'
Include all ToC entries
Добавлено в версии 1.2.
- epub_fix_images¶
- Тип:
bool
- По умолчанию:
False
Try and fix image formats that are not supported by some EPUB readers. At the moment palette images with a small colour table are upgraded. This is disabled by default because the automatic conversion may lose information. You need the Python Image Library (Pillow) installed to use this option.
Добавлено в версии 1.2.
- epub_max_image_width¶
- Тип:
int
- По умолчанию:
0
This option specifies the maximum width of images. If it is set to a valuevgreater than zero, images with a width larger than the given value are scaled accordingly. If it is zero, no scaling is performed. You need the Python Image Library (Pillow) installed to use this option.
Добавлено в версии 1.2.
- epub_show_urls¶
- Тип:
'footnote' | 'no' | 'inline'
- По умолчанию:
'footnote'
Control how to display URL addresses. This is very useful for readers that have no other means to display the linked URL. The setting can have the following values:
'inline'
Display URLs inline in parentheses.
'footnote'
Display URLs in footnotes.
'no'
Do not display URLs.
The display of inline URLs can be customised by adding CSS rules for the class
link-target
.Добавлено в версии 1.2.
- epub_use_index¶
- Тип:
bool
- По умолчанию:
- The value of html_use_index
Add an index to the EPUB document.
Добавлено в версии 1.2.
- epub_writing_mode¶
- Тип:
'horizontal' | 'vertical'
- По умолчанию:
'horizontal'
It specifies writing direction. It can accept
'horizontal'
and'vertical'
epub_writing_mode
'horizontal'
'vertical'
horizontal-tb
vertical-rl
page progression
left to right
right to left
iBook’s Scroll Theme support
scroll-axis is vertical.
scroll-axis is horizontal.
Options for LaTeX output¶
These options influence LaTeX output.
- latex_engine¶
- Тип:
'pdflatex' | 'xelatex' | 'lualatex' | 'platex' | 'uplatex'
- По умолчанию:
'pdflatex'
The LaTeX engine to build the documentation. The setting can have the following values:
'pdflatex'
– PDFLaTeX (default)'xelatex'
– XeLaTeX (default iflanguage
is one ofel
,zh_CN
, orzh_TW
)'lualatex'
– LuaLaTeX'platex'
– pLaTeX'uplatex'
– upLaTeX (default iflanguage
is'ja'
)
Важно
'pdflatex'
„s support for Unicode characters is limited. If your project uses Unicode characters, setting the engine to'xelatex'
or'lualatex'
and making sure to use an OpenType font with wide-enough glyph coverage is often easier than trying to make'pdflatex'
work with the extra Unicode characters. Since Sphinx 2.0, the default typeface is GNU FreeFont, which has good coverage of Latin, Cyrillic, and Greek glyphs.Примечание
Sphinx 2.0 adds support for occasional Cyrillic and Greek letters or words in documents using a Latin language and
'pdflatex'
. To enable this, the 'fontenc' key of latex_elements must be used appropriately.Примечание
Contrarily to MathJaX math rendering in HTML output, LaTeX requires some extra configuration to support Unicode literals in
math
: the only comprehensive solution (as far as we know) is to use'xelatex'
or'lualatex'
and to addr'\usepackage{unicode-math}'
(e.g. via the 'preamble' key of latex_elements). You may preferr'\usepackage[math-style=literal]{unicode-math}'
to keep a Unicode literal such asα
(U+03B1) as-is in output, rather than being rendered as \(\alpha\).Изменено в версии 2.1.0: Use
'xelatex'
(and LaTeX packagexeCJK
) by default for Chinese documents.Изменено в версии 2.2.1: Use
'xelatex'
by default for Greek documents.Изменено в версии 2.3: Add
'uplatex'
support.Изменено в версии 4.0: Use
'uplatex'
by default for Japanese documents.
- latex_documents¶
- Тип:
Sequence[tuple[str, str, str, str, str, bool]]
- По умолчанию:
- The default LaTeX documents
This value determines how to group the document tree into LaTeX source files. It must be a list of tuples
(startdocname, targetname, title, author, theme, toctree_only)
, where the items are:- startdocname
String that specifies the document name of the LaTeX file’s master document. All documents referenced by the startdoc document in ToC trees will be included in the LaTeX file. (If you want to use the default master document for your LaTeX build, provide your
master_doc
here.)- targetname
File name of the LaTeX file in the output directory.
- title
LaTeX document title. Can be empty to use the title of the startdoc document. This is inserted as LaTeX markup, so special characters like a backslash or ampersand must be represented by the proper LaTeX commands if they are to be inserted literally.
- author
Author for the LaTeX document. The same LaTeX markup caveat as for title applies. Use
\\and
to separate multiple authors, as in:'John \\and Sarah'
(backslashes must be Python-escaped to reach LaTeX).- theme
LaTeX theme. See
latex_theme
.- toctree_only
Must be
True
orFalse
. If True, the startdoc document itself is not included in the output, only the documents referenced by it via ToC trees. With this option, you can put extra stuff in the master document that shows up in the HTML, but not the LaTeX output.
Добавлено в версии 0.3: The 6th item
toctree_only
. Tuples with 5 items are still accepted.Добавлено в версии 1.2: In the past including your own document class required you to prepend the document class name with the string «sphinx». This is not necessary anymore.
- latex_logo¶
- Тип:
str
- По умолчанию:
''
If given, this must be the name of an image file (path relative to the configuration directory) that is the logo of the documentation. It is placed at the top of the title page.
- latex_toplevel_sectioning¶
- Тип:
'part' | 'chapter' | 'section'
- По умолчанию:
None
This value determines the topmost sectioning unit. The default setting is
'section'
iflatex_theme
is'howto'
, and'chapter'
if it is'manual'
. The alternative in both cases is to specify'part'
, which means that LaTeX document will use the\part
command.In that case the numbering of sectioning units one level deep gets off-sync with HTML numbering, as by default LaTeX does not reset
\chapter
numbering (or\section
for'howto'
theme) when encountering\part
command.Добавлено в версии 1.4.
- latex_appendices¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of document names to append as an appendix to all manuals. This is ignored if
latex_theme
is set to'howto'
.
- latex_domain_indices¶
- Тип:
bool | Sequence[str]
- По умолчанию:
True
If True, generate domain-specific indices in addition to the general index. For e.g. the Python domain, this is the global module index.
This value can be a Boolean or a list of index names that should be generated. To find out the index name for a specific index, look at the HTML file name. For example, the Python module index has the name
'py-modindex'
.Example:
latex_domain_indices = { 'py-modindex', }
Добавлено в версии 1.0.
Изменено в версии 7.4: Permit and prefer a set type.
- latex_show_pagerefs¶
- Тип:
bool
- По умолчанию:
False
Add page references after internal references. This is very useful for printed copies of the manual.
Добавлено в версии 1.0.
- latex_show_urls¶
- Тип:
'no' | 'footnote' | 'inline'
- По умолчанию:
'no'
Control how to display URL addresses. This is very useful for printed copies of the manual. The setting can have the following values:
'no'
Do not display URLs
'footnote'
Display URLs in footnotes
'inline'
Display URLs inline in parentheses
Добавлено в версии 1.0.
Изменено в версии 1.1: This value is now a string; previously it was a boolean value, and a true value selected the
'inline'
display. For backwards compatibility,True
is still accepted.
- latex_use_latex_multicolumn¶
- Тип:
bool
- По умолчанию:
False
Use standard LaTeX’s
\multicolumn
for merged cells in tables.False
Sphinx’s own macros are used for merged cells from grid tables. They allow general contents (literal blocks, lists, blockquotes, …) but may have problems if the
tabularcolumns
directive was used to inject LaTeX mark-up of the type>{..}
,<{..}
,@{..}
as column specification.True
Use LaTeX’s standard
\multicolumn
; this is incompatible with literal blocks in horizontally merged cells, and also with multiple paragraphs in such cells if the table is rendered usingtabulary
.
Добавлено в версии 1.6.
- latex_table_style¶
- Тип:
list[str]
- По умолчанию:
['booktabs', 'colorrows']
A list of styling classes (strings). Currently supported:
'booktabs'
No vertical lines, and only 2 or 3 horizontal lines (the latter if there is a header), using the booktabs package.
'borderless'
No lines whatsoever.
'colorrows'
The table rows are rendered with alternating background colours. The interface to customise them is via dedicated keys of The sphinxsetup configuration setting.
Важно
With the
'colorrows'
style, the\rowcolors
LaTeX command becomes a no-op (this command has limitations and has never correctly supported all types of tables Sphinx produces in LaTeX). Please update your project to use the latex table color configuration keys instead.
To customise the styles for a table, use the
:class:
option if the table is defined using a directive, or otherwise insert a rst-class directive before the table (cf. Tables).Currently recognised classes are
booktabs
,borderless
,standard
,colorrows
,nocolorrows
. The latter two can be combined with any of the first three. Thestandard
class produces tables with both horizontal and vertical lines (as has been the default so far with Sphinx).A single-row multi-column merged cell will obey the row colour, if it is set. See also
TableMergeColor{Header,Odd,Even}
in the The sphinxsetup configuration setting section.Примечание
It is hard-coded in LaTeX that a single cell will obey the row colour even if there is a column colour set via
\columncolor
from a column specification (seetabularcolumns
). Sphinx provides\sphinxnorowcolor
which can be used in a table column specification like this:>{\columncolor{blue}\sphinxnorowcolor}
Sphinx also provides
\sphinxcolorblend
, which however requires the xcolor package. Here is an example:>{\sphinxcolorblend{!95!red}}
It means that in this column, the row colours will be slightly tinted by red; refer to xcolor documentation for more on the syntax of its
\blendcolors
command (a\blendcolors
in place of\sphinxcolorblend
would modify colours of the cell contents, not of the cell background colour panel…). You can find an example of usage in the Deprecated APIs section of this document in PDF format.Подсказка
If you want to use a special colour for the contents of the cells of a given column use
>{\noindent\color{<color>}}
, possibly in addition to the above.Multi-row merged cells, whether single column or multi-column currently ignore any set column, row, or cell colour.
It is possible for a simple cell to set a custom colour via the raw directive and the
\cellcolor
LaTeX command used anywhere in the cell contents. This currently is without effect in a merged cell, whatever its kind.
Подсказка
In a document not using
'booktabs'
globally, it is possible to style an individual table via thebooktabs
class, but it will be necessary to addr'\usepackage{booktabs}'
to the LaTeX preamble.On the other hand one can use
colorrows
class for individual tables with no extra package (as Sphinx since 5.3.0 always loads colortbl).Добавлено в версии 5.3.0.
Изменено в версии 6.0.0: Modify default from
[]
to['booktabs', 'colorrows']
.
- latex_use_xindy¶
- Тип:
bool
- По умолчанию:
True if latex_engine in {'xelatex', 'lualatex'} else False
Use Xindy to prepare the index of general terms. By default, the LaTeX builder uses makeindex for preparing the index of general terms . Using Xindy means that words with UTF-8 characters will be ordered correctly for the
language
.This option is ignored if
latex_engine
is'platex'
(Japanese documents; mendex replaces makeindex then).The default is
True
for'xelatex'
or'lualatex'
as makeindex creates.ind
files containing invalid bytes for the UTF-8 encoding if any indexed term starts with a non-ASCII character. With'lualatex'
this then breaks the PDF build.The default is
False
for'pdflatex'
, butTrue
is recommended for non-English documents as soon as some indexed terms use non-ASCII characters from the language script. Attempting to index a term whose first character is non-ASCII will break the build, iflatex_use_xindy
is left to its defaultFalse
.
Sphinx adds some dedicated support to the xindy base distribution for using
'pdflatex'
engine with Cyrillic scripts. With both'pdflatex'
and Unicode engines, Cyrillic documents handle the indexing of Latin names correctly, even those having diacritics.Добавлено в версии 1.8.
- latex_elements¶
- Тип:
dict[str, str]
- По умолчанию:
{}
Добавлено в версии 0.5.
- latex_docclass¶
- Тип:
dict[str, str]
- По умолчанию:
{}
A dictionary mapping
'howto'
and'manual'
to names of real document classes that will be used as the base for the two Sphinx classes. Default is to use'article'
for'howto'
and'report'
for'manual'
.Добавлено в версии 1.0.
Изменено в версии 1.5: In Japanese documentation (
language
is'ja'
), by default'jreport'
is used for'howto'
and'jsbook'
for'manual'
.
- latex_additional_files¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of file names, relative to the configuration directory, to copy to the build directory when building LaTeX output. This is useful to copy files that Sphinx doesn’t copy automatically, or to overwrite Sphinx LaTeX support files with custom versions. Image files that are referenced in source files (e.g. via
.. image::
) are copied automatically and should not be listed there.Внимание
Filenames with the
.tex
extension will be automatically handed over to the PDF build process triggered bysphinx-build -M latexpdf
or by make latexpdf. If the file was added only to be\input{}
from a modified preamble, you must add a further suffix such as.txt
to the filename and adjust the\input{}
macro accordingly.Добавлено в версии 0.6.
Изменено в версии 1.2: This overrides the files provided from Sphinx such as
sphinx.sty
.
- latex_theme¶
- Тип:
str
- По умолчанию:
'manual'
The «theme» that the LaTeX output should use. It is a collection of settings for LaTeX output (e.g. document class, top level sectioning unit and so on).
The bundled first-party LaTeX themes are manual and howto:
manual
A LaTeX theme for writing a manual. It imports the
report
document class (Japanese documents usejsbook
).howto
A LaTeX theme for writing an article. It imports the
article
document class (Japanese documents usejreport
).latex_appendices
is only available for this theme.
Добавлено в версии 3.0.
- latex_theme_options¶
- Тип:
dict[str, Any]
- По умолчанию:
{}
A dictionary of options that influence the look and feel of the selected theme. These are theme-specific.
Добавлено в версии 3.1.
- latex_theme_path¶
- Тип:
list[str]
- По умолчанию:
[]
A list of paths that contain custom LaTeX themes as subdirectories. Relative paths are taken as relative to the configuration directory.
Добавлено в версии 3.0.
Options for text output¶
These options influence text output.
- text_add_secnumbers¶
- Тип:
bool
- По умолчанию:
True
Include section numbers in text output.
Добавлено в версии 1.7.
- text_newlines¶
- Тип:
'unix' | 'windows' | 'native'
- По умолчанию:
'unix'
Determines which end-of-line character(s) are used in text output.
'unix'
Use Unix-style line endings (
\n
).'windows'
Use Windows-style line endings (
\r\n
).'native'
Use the line ending style of the platform the documentation is built on.
Добавлено в версии 1.1.
- text_secnumber_suffix¶
- Тип:
str
- По умолчанию:
'. '
Suffix for section numbers in text output. Set to
' '
to suppress the final dot on section numbers.Добавлено в версии 1.7.
- text_sectionchars¶
- Тип:
str
- По умолчанию:
'*=-~"+`'
A string of 7 characters that should be used for underlining sections. The first character is used for first-level headings, the second for second-level headings and so on.
Добавлено в версии 1.1.
Options for manual page output¶
These options influence manual page output.
- man_pages¶
- Тип:
Sequence[tuple[str, str, str, str, str]]
- По умолчанию:
- The default manual pages
This value determines how to group the document tree into manual pages. It must be a list of tuples
(startdocname, name, description, authors, section)
, where the items are:- startdocname
String that specifies the document name of the manual page’s master document. All documents referenced by the startdoc document in ToC trees will be included in the manual page. (If you want to use the default master document for your manual pages build, provide your
master_doc
here.)- name
Name of the manual page. This should be a short string without spaces or special characters. It is used to determine the file name as well as the name of the manual page (in the NAME section).
- description
Description of the manual page. This is used in the NAME section. Can be an empty string if you do not want to automatically generate the NAME section.
- authors
A list of strings with authors, or a single string. Can be an empty string or list if you do not want to automatically generate an AUTHORS section in the manual page.
- section
The manual page section. Used for the output file name as well as in the manual page header.
Добавлено в версии 1.0.
- man_show_urls¶
- Тип:
bool
- По умолчанию:
False
Add URL addresses after links.
Добавлено в версии 1.1.
- man_make_section_directory¶
- Тип:
bool
- По умолчанию:
True
Make a section directory on build man page.
Добавлено в версии 3.3.
Изменено в версии 4.0: The default is now
False
(previouslyTrue
).Изменено в версии 4.0.2: Revert the change in the default.
Options for Texinfo output¶
These options influence Texinfo output.
- texinfo_documents¶
- Тип:
Sequence[tuple[str, str, str, str, str, str, str, bool]]
- По умолчанию:
- The default Texinfo documents
This value determines how to group the document tree into Texinfo source files. It must be a list of tuples
(startdocname, targetname, title, author, dir_entry, description, category, toctree_only)
, where the items are:- startdocname
String that specifies the document name of the Texinfo file’s master document. All documents referenced by the startdoc document in ToC trees will be included in the Texinfo file. (If you want to use the default master document for your Texinfo build, provide your
master_doc
here.)- targetname
File name (no extension) of the Texinfo file in the output directory.
- title
Texinfo document title. Can be empty to use the title of the startdoc document. Inserted as Texinfo markup, so special characters like
@
and{}
will need to be escaped to be inserted literally.- author
Author for the Texinfo document. Inserted as Texinfo markup. Use
@*
to separate multiple authors, as in:'John@*Sarah'
.- dir_entry
The name that will appear in the top-level
DIR
menu file.- description
Descriptive text to appear in the top-level
DIR
menu file.- category
Specifies the section which this entry will appear in the top-level
DIR
menu file.- toctree_only
Must be
True
orFalse
. If True, the startdoc document itself is not included in the output, only the documents referenced by it via ToC trees. With this option, you can put extra stuff in the master document that shows up in the HTML, but not the Texinfo output.
Добавлено в версии 1.1.
- texinfo_appendices¶
- Тип:
Sequence[str]
- По умолчанию:
[]
A list of document names to append as an appendix to all manuals.
Добавлено в версии 1.1.
- texinfo_cross_references¶
- Тип:
bool
- По умолчанию:
True
Generate inline references in a document. Disabling inline references can make an info file more readable with a stand-alone reader (
info
).Добавлено в версии 4.4.
- texinfo_domain_indices¶
- Тип:
bool | Sequence[str]
- По умолчанию:
True
If True, generate domain-specific indices in addition to the general index. For e.g. the Python domain, this is the global module index.
This value can be a Boolean or a list of index names that should be generated. To find out the index name for a specific index, look at the HTML file name. For example, the Python module index has the name
'py-modindex'
.Example:
texinfo_domain_indices = { 'py-modindex', }
Добавлено в версии 1.1.
Изменено в версии 7.4: Permit and prefer a set type.
- texinfo_elements¶
- Тип:
dict[str, Any]
- По умолчанию:
{}
A dictionary that contains Texinfo snippets that override those that Sphinx usually puts into the generated
.texi
files.Keys that you may want to override include:
'paragraphindent'
Number of spaces to indent the first line of each paragraph, default
2
. Specify0
for no indentation.'exampleindent'
Number of spaces to indent the lines for examples or literal blocks, default
4
. Specify0
for no indentation.'preamble'
Texinfo markup inserted near the beginning of the file.
'copying'
Texinfo markup inserted within the
@copying
block and displayed after the title. The default value consists of a simple title page identifying the project.
Keys that are set by other options and therefore should not be overridden are
'author'
,'body'
,'date'
,'direntry'
'filename'
,'project'
,'release'
, and'title'
.
Добавлено в версии 1.1.
- Тип:
bool
- По умолчанию:
False
Do not generate a
@detailmenu
in the «Top» node’s menu containing entries for each sub-node in the document.Добавлено в версии 1.2.
- texinfo_show_urls¶
- Тип:
'footnote' | 'no' | 'inline'
- По умолчанию:
'footnote'
Control how to display URL addresses. The setting can have the following values:
'footnote'
Display URLs in footnotes.
'no'
Do not display URLs.
'inline'
Display URLs inline in parentheses.
Добавлено в версии 1.1.
Options for QtHelp output¶
These options influence qthelp output. This builder derives from the HTML builder, so the HTML options also apply where appropriate.
- qthelp_basename¶
- Тип:
str
- По умолчанию:
- The value of project
The basename for the qthelp file.
- qthelp_namespace¶
- Тип:
str
- По умолчанию:
'org.sphinx.{project_name}.{project_version}'
The namespace for the qthelp file.
- qthelp_theme¶
- Тип:
str
- По умолчанию:
'nonav'
The HTML theme for the qthelp output.
- qthelp_theme_options¶
- Тип:
dict[str, Any]
- По умолчанию:
{}
A dictionary of options that influence the look and feel of the selected theme. These are theme-specific. The options understood by the builtin themes are described here.
Options for XML output¶
- xml_pretty¶
- Тип:
bool
- По умолчанию:
True
Pretty-print the XML.
Добавлено в версии 1.2.
Options for the linkcheck builder¶
Filtering¶
These options control which links the linkcheck builder checks, and which failures and redirects it ignores.
- linkcheck_allowed_redirects¶
- Тип:
dict[str, str]
- По умолчанию:
{}
A dictionary that maps a pattern of the source URI to a pattern of the canonical URI. The linkcheck builder treats the redirected link as «working» when:
the link in the document matches the source URI pattern, and
the redirect location matches the canonical URI pattern.
The linkcheck builder will emit a warning when it finds redirected links that don’t meet the rules above. It can be useful to detect unexpected redirects when using
the fail-on-warnings mode
.Example:
linkcheck_allowed_redirects = { # All HTTP redirections from the source URI to # the canonical URI will be treated as "working". r'https://sphinx-doc\.org/.*': r'https://sphinx-doc\.org/en/master/.*' }
Добавлено в версии 4.1.
- linkcheck_anchors¶
- Тип:
bool
- По умолчанию:
True
Check the validity of
#anchor
s in links. Since this requires downloading the whole document, it is considerably slower when enabled.Добавлено в версии 1.2.
- linkcheck_anchors_ignore¶
- Тип:
Sequence[str]
- По умолчанию:
["^!"]
A list of regular expressions that match anchors that the linkcheck builder should skip when checking the validity of anchors in links. For example, this allows skipping anchors added by a website’s JavaScript.
Совет
Use
linkcheck_anchors_ignore_for_url
to check a URL, but skip verifying that the anchors exist.Примечание
If you want to ignore anchors of a specific page or of pages that match a specific pattern (but still check occurrences of the same page(s) that don’t have anchors), use
linkcheck_ignore
instead, for example as follows:linkcheck_ignore = [ 'https://www.sphinx-doc.org/en/1.7/intro.html#', ]
Добавлено в версии 1.5.
- linkcheck_anchors_ignore_for_url¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list or tuple of regular expressions matching URLs for which the linkcheck builder should not check the validity of anchors. This allows skipping anchor checks on a per-page basis while still checking the validity of the page itself.
Добавлено в версии 7.1.
- linkcheck_exclude_documents¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of regular expressions that match documents in which the linkcheck builder should not check the validity of links. This can be used for permitting link decay in legacy or historical sections of the documentation.
Example:
# ignore all links in documents located in a subdirectory named 'legacy' linkcheck_exclude_documents = [r'.*/legacy/.*']
Добавлено в версии 4.4.
- linkcheck_ignore¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of regular expressions that match URIs that should not be checked when doing a
linkcheck
build.Example:
linkcheck_ignore = [r'https://localhost:\d+/']
Добавлено в версии 1.1.
HTTP Requests¶
These options control how the linkcheck builder makes HTTP requests, including how it handles redirects and authentication, and the number of workers to use.
- linkcheck_auth¶
- Тип:
Sequence[tuple[str, Any]]
- По умолчанию:
[]
Pass authentication information when doing a
linkcheck
build.A list of
(regex_pattern, auth_info)
tuples where the items are:- regex_pattern
A regular expression that matches a URI.
- auth_info
Authentication information to use for that URI. The value can be anything that is understood by the
requests
library (see requests authentication for details).
The linkcheck builder will use the first matching
auth_info
value it can find in thelinkcheck_auth
list, so values earlier in the list have higher priority.Example:
linkcheck_auth = [ ('https://foo\.yourcompany\.com/.+', ('johndoe', 'secret')), ('https://.+\.yourcompany\.com/.+', HTTPDigestAuth(...)), ]
Добавлено в версии 2.3.
- linkcheck_allow_unauthorized¶
- Тип:
bool
- По умолчанию:
False
When a webserver responds with an HTTP 401 (unauthorised) response, the current default behaviour of the linkcheck builder is to treat the link as «broken». To change that behaviour, set this option to
True
.Изменено в версии 8.0: The default value for this option changed to
False
, meaning HTTP 401 responses to checked hyperlinks are treated as «broken» by default.Добавлено в версии 7.3.
- linkcheck_rate_limit_timeout¶
- Тип:
int
- По умолчанию:
300
The linkcheck builder may issue a large number of requests to the same site over a short period of time. This setting controls the builder behaviour when servers indicate that requests are rate-limited, by setting the maximum duration (in seconds) that the builder will wait for between each attempt before recording a failure.
The linkcheck builder always respects a server’s direction of when to retry (using the Retry-After header). Otherwise,
linkcheck
waits for a minute before to retry and keeps doubling the wait time between attempts until it succeeds or exceeds thelinkcheck_rate_limit_timeout
(in seconds). Custom timeouts should be given as a number of seconds.Добавлено в версии 3.4.
- linkcheck_report_timeouts_as_broken¶
- Тип:
bool
- По умолчанию:
False
If
linkcheck_timeout
expires while waiting for a response from a hyperlink, the linkcheck builder will report the link as atimeout
by default. To report timeouts asbroken
instead, you can setlinkcheck_report_timeouts_as_broken
toTrue
.Изменено в версии 8.0: The default value for this option changed to
False
, meaning timeouts that occur while checking hyperlinks will be reported using the new „timeout“ status code.Добавлено в версии 7.3.
- linkcheck_request_headers¶
- Тип:
dict[str, dict[str, str]]
- По умолчанию:
{}
A dictionary that maps URL (without paths) to HTTP request headers.
The key is a URL base string like
'https://www.sphinx-doc.org/'
. To specify headers for other hosts,"*"
can be used. It matches all hosts only when the URL does not match other settings.The value is a dictionary that maps header name to its value.
Example:
linkcheck_request_headers = { "https://www.sphinx-doc.org/": { "Accept": "text/html", "Accept-Encoding": "utf-8", }, "*": { "Accept": "text/html,application/xhtml+xml", } }
Добавлено в версии 3.1.
- linkcheck_retries¶
- Тип:
int
- По умолчанию:
1
The number of times the linkcheck builder will attempt to check a URL before declaring it broken.
Добавлено в версии 1.4.
- linkcheck_timeout¶
- Тип:
int
- По умолчанию:
30
The duration, in seconds, that the linkcheck builder will wait for a response after each hyperlink request.
Добавлено в версии 1.1.
- linkcheck_workers¶
- Тип:
int
- По умолчанию:
5
The number of worker threads to use when checking links.
Добавлено в версии 1.1.
Domain options¶
Options for the C domain¶
- c_extra_keywords¶
- Тип:
Set[str] | Sequence[str]
- По умолчанию:
['alignas', 'alignof', 'bool', 'complex', 'imaginary', 'noreturn', 'static_assert', 'thread_local']
A list of identifiers to be recognised as keywords by the C parser.
Добавлено в версии 4.0.3.
Изменено в версии 7.4:
c_extra_keywords
can now be a set.
- c_id_attributes¶
- Тип:
Sequence[str]
- По умолчанию:
()
A sequence of strings that the parser should additionally accept as attributes. For example, this can be used when
#define
has been used for attributes, for portability.Example:
c_id_attributes = [ 'my_id_attribute', ]
Добавлено в версии 3.0.
Изменено в версии 7.4:
c_id_attributes
can now be a tuple.
- c_maximum_signature_line_length¶
- Тип:
int | None
- По умолчанию:
None
If a signature’s length in characters exceeds the number set, each parameter within the signature will be displayed on an individual logical line.
When
None
, there is no maximum length and the entire signature will be displayed on a single logical line.This is a domain-specific setting, overriding
maximum_signature_line_length
.Добавлено в версии 7.1.
- c_paren_attributes¶
- Тип:
Sequence[str]
- По умолчанию:
()
A sequence of strings that the parser should additionally accept as attributes with one argument. That is, if
my_align_as
is in the list, thenmy_align_as(X)
is parsed as an attribute for all stringsX
that have balanced braces (()
,[]
, and{}
). For example, this can be used when#define
has been used for attributes, for portability.Example:
c_paren_attributes = [ 'my_align_as', ]
Добавлено в версии 3.0.
Изменено в версии 7.4:
c_paren_attributes
can now be a tuple.
Options for the C++ domain¶
- cpp_id_attributes¶
- Тип:
Sequence[str]
- По умолчанию:
()
A sequence of strings that the parser should additionally accept as attributes. For example, this can be used when
#define
has been used for attributes, for portability.Example:
cpp_id_attributes = [ 'my_id_attribute', ]
Добавлено в версии 1.5.
Изменено в версии 7.4:
cpp_id_attributes
can now be a tuple.
- cpp_index_common_prefix¶
- Тип:
Sequence[str]
- По умолчанию:
()
A list of prefixes that will be ignored when sorting C++ objects in the global index.
Example:
cpp_index_common_prefix = [ 'awesome_lib::', ]
Добавлено в версии 1.5.
- cpp_maximum_signature_line_length¶
- Тип:
int | None
- По умолчанию:
None
If a signature’s length in characters exceeds the number set, each parameter within the signature will be displayed on an individual logical line.
When
None
, there is no maximum length and the entire signature will be displayed on a single logical line.This is a domain-specific setting, overriding
maximum_signature_line_length
.Добавлено в версии 7.1.
- cpp_paren_attributes¶
- Тип:
Sequence[str]
- По умолчанию:
()
A sequence of strings that the parser should additionally accept as attributes with one argument. That is, if
my_align_as
is in the list, thenmy_align_as(X)
is parsed as an attribute for all stringsX
that have balanced braces (()
,[]
, and{}
). For example, this can be used when#define
has been used for attributes, for portability.Example:
cpp_paren_attributes = [ 'my_align_as', ]
Добавлено в версии 1.5.
Изменено в версии 7.4:
cpp_paren_attributes
can now be a tuple.
Options for the Javascript domain¶
- javascript_maximum_signature_line_length¶
- Тип:
int | None
- По умолчанию:
None
If a signature’s length in characters exceeds the number set, each parameter within the signature will be displayed on an individual logical line.
When
None
, there is no maximum length and the entire signature will be displayed on a single logical line.This is a domain-specific setting, overriding
maximum_signature_line_length
.Добавлено в версии 7.1.
Options for the Python domain¶
- add_module_names¶
- Тип:
bool
- По умолчанию:
True
A boolean that decides whether module names are prepended to all object names (for object types where a «module» of some kind is defined), e.g. for
py:function
directives.
- modindex_common_prefix¶
- Тип:
list[str]
- По умолчанию:
[]
A list of prefixes that are ignored for sorting the Python module index (e.g., if this is set to
['foo.']
, thenfoo.bar
is shown underB
, notF
). This can be handy if you document a project that consists of a single package.Осторожно
Works only for the HTML builder currently.
Добавлено в версии 0.6.
- python_display_short_literal_types¶
- Тип:
bool
- По умолчанию:
False
This value controls how
Literal
types are displayed.Примеры¶
The examples below use the following
py:function
directive:.. py:function:: serve_food(item: Literal["egg", "spam", "lobster thermidor"]) -> None
When
False
,Literal
types display as per standard Python syntax, i.e.:serve_food(item: Literal["egg", "spam", "lobster thermidor"]) -> None
When
True
,Literal
types display with a short, PEP 604-inspired syntax, i.e.:serve_food(item: "egg" | "spam" | "lobster thermidor") -> None
Добавлено в версии 6.2.
- python_maximum_signature_line_length¶
- Тип:
int | None
- По умолчанию:
None
If a signature’s length in characters exceeds the number set, each parameter within the signature will be displayed on an individual logical line.
When
None
, there is no maximum length and the entire signature will be displayed on a single logical line.This is a domain-specific setting, overriding
maximum_signature_line_length
.For the Python domain, the signature length depends on whether the type parameters or the list of arguments are being formatted. For the former, the signature length ignores the length of the arguments list; for the latter, the signature length ignores the length of the type parameters list.
For instance, with
python_maximum_signature_line_length = 20
, only the list of type parameters will be wrapped while the arguments list will be rendered on a single line.. py:function:: add[T: VERY_LONG_SUPER_TYPE, U: VERY_LONG_SUPER_TYPE](a: T, b: U)
Добавлено в версии 7.1.
- python_use_unqualified_type_names¶
- Тип:
bool
- По умолчанию:
False
Suppress the module name of the python reference if it can be resolved.
Добавлено в версии 4.0.
Осторожно
This feature is experimental.
- trim_doctest_flags¶
- Тип:
bool
- По умолчанию:
True
Remove doctest flags (comments looking like
# doctest: FLAG, ...
) at the ends of lines and<BLANKLINE>
markers for all code blocks showing interactive Python sessions (i.e. doctests). See the extensiondoctest
for more possibilities of including doctests.Добавлено в версии 1.0.
Изменено в версии 1.1: Now also removes
<BLANKLINE>
.
Extension options¶
Extensions frequently have their own configuration options. Those for Sphinx’s first-party extensions are documented in each extension’s page.
Example configuration file¶
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Test Project'
copyright = '2000-2042, The Test Project Authors'
author = 'The Authors'
version = release = '4.16'
# -- General configuration ------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
exclude_patterns = [
'_build',
'Thumbs.db',
'.DS_Store',
]
extensions = []
language = 'en'
master_doc = 'index'
pygments_style = 'sphinx'
source_suffix = '.rst'
templates_path = ['_templates']
# -- Options for HTML output ----------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'alabaster'
html_static_path = ['_static']