Build environment API

class sphinx.environment.BuildEnvironment[源代码]

Attributes

app

Reference to the Sphinx (application) object.

config

Reference to the Config object.

project

Target project. See Project.

srcdir

Source directory.

doctreedir

Directory for storing pickled doctrees.

events

An EventManager object.

found_docs

A set of all existing docnames.

metadata

Dictionary mapping docnames to “metadata” (see 整个文件的元数据).

titles

Dictionary mapping docnames to the docutils node for their main title.

docname

Returns the docname of the document currently being parsed.

Utility methods

doc2path(docname: str, base: bool = True) str[源代码]

Return the filename for the document name.

If base is True, return absolute path under self.srcdir. If base is False, return relative path to self.srcdir.

relfn2path(filename: str, docname: Optional[str] = None) Tuple[str, str][源代码]

Return paths to a file referenced from a document, relative to documentation root and absolute.

In the input “filename”, absolute filenames are taken as relative to the source dir, while relative filenames are relative to the dir of the containing document.

note_dependency(filename: str) None[源代码]

Add filename as a dependency of the current document.

This means that the document will be rebuilt if this file changes.

filename should be absolute or relative to the source directory.

new_serialno(category: str = '') int[源代码]

Return a serial number, e.g. for index entry targets.

The number is guaranteed to be unique in the current document.

note_reread() None[源代码]

Add the current document to the list of documents that will automatically be re-read at the next build.