Listes de champs¶
As previously discussed, field lists are sequences of fields marked up like this:
:fieldname: Field content
Sphinx extends standard docutils behavior for field lists and adds some extra functionality that is covered in this section.
Note
The values of field lists will be parsed as strings. You cannot use Python collections such as lists or dictionaries.
File-wide metadata¶
A field list near the top of a file is normally parsed by docutils as the docinfo and shown on the page. However, in Sphinx, a field list preceding any other markup is moved from the docinfo to the Sphinx environment as document metadata, and is not displayed in the output.
Note
A field list appearing after the document title will be part of the docinfo as normal and will be displayed in the output.
Champs de métadonnées spéciaux¶
Sphinx provides custom behavior for bibliographic fields compared to docutils.
Actuellement, les champs de métadonnées suivants sont reconnus:
tocdepthProfondeur maximale de la table des matières de ce fichier.
:tocdepth: 2Note
This metadata affects the depth of the local toctree. But it does not affect the depth of the global toctree. So this does not change the sidebar of themes that use the global toctree.
Ajouté dans la version 0.4.
nocommentsIf set, the web application won’t display a comment form for a page generated from this source file.
:nocomments:orphanIf set, warnings about this file not being included in any toctree will be suppressed.
:orphan:Ajouté dans la version 1.0.
no-searchDisable full text search for this document.
:no-search:Note
The
:no-search:option only disables full text search, meaning that object search will still be available even if:no-search:is set.Ajouté dans la version 3.0.
Modifié dans la version 7.3: The file-wide metadata option
:nosearch:was renamed to:no-search:. The previous name has been retained as an alias, but will be deprecated and removed in a future version of Sphinx.