
Docutils: Documentation Utilities
Mar 21, 2025 · Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML, LaTeX, man-pages, OpenDocument, or …
Docutils FAQ (Frequently Asked Questions) - SourceForge
Docutils is short for "Python Documentation Utilities". The name "Docutils" was inspired by "Distutils", the Python Distribution Utilities architected by Greg Ward, a component of Python's …
Docutils Front-End Tools - SourceForge
Dec 4, 2024 · In addition to the generic "docutils" application, Docutils installs a set of small front ends, each specialized for a specific "Reader" (which knows how to interpret a file in context), …
reStructuredText Markup Specification - SourceForge
Mar 30, 2025 · Docutils supports localised bibliographic field names and author separators. See the language_code setting and, for details, Docutils Internationalization. RCS Keywords. …
Quick reStructuredText - SourceForge
Jan 29, 2022 · Users who have questions or need assistance with Docutils or reStructuredText should post a message to the Docutils-Users mailing list. The Docutils project web site has …
reStructuredText - SourceForge
It is useful for in-line program documentation (such as Python docstrings), for quickly creating simple web pages, and for standalone documents. reStructuredText is designed for …
The Docutils Document Tree - SourceForge
Docutils implements the Document tree data structure in the Python module docutils.nodes. For details, see its internal API documentation ("docstrings") and the source nodes.py . The …
reStructuredText Directives - SourceForge
Dec 11, 2024 · Docutils comes with a set of character substitution definitions in the reStructuredText Standard Definition Files. The "unicode" directive recognizes the following …
Docutils Release Notes - SourceForge
3 days ago · Docutils 0.4 is the last version supporting Python 2.1. It is also the last version that will make compromises in its HTML output for Netscape Navigator 4. Docutils 0.5 will require …
Creating reStructuredText Directives - SourceForge
Aug 15, 2024 · Directives are created by defining a directive class that inherits from docutils.parsers.rst.Directive: from docutils.parsers import rst class MyDirective(rst.Directive): …