This package contains modules for standard tree transforms available to Docutils components. Tree transforms serve a variety of purposes:
Each transform is an optional step that a Docutils component may choose to perform on the parsed document.
Module | components |
Docutils component-related transforms. |
Module | frontmatter |
Transforms related to the front matter of a document or a section (information found before the main text): |
Module | misc |
Miscellaneous transforms. |
Module | parts |
Transforms related to document parts. |
Module | peps |
Transforms for PEP processing. |
Module | references |
Transforms for resolving references. |
Module | universal |
Transforms needed by most or all documents: |
Module | writer_aux |
Auxiliary transforms mainly to be used by Writer components. |
From __init__.py
:
Class | Transform |
Docutils transform component abstract base class. |
Class | Transformer |
Stores transforms (Transform classes) and applies them to document trees. Also keeps track of components by component type name. |
Class | TransformError |
Undocumented |