Links
AI / Agents
gdtest-rst-important
Tests important RST directives in docstrings.
Docstrings contain ‘.. important::’ directives. The built-in handler should produce Quarto important callouts. Two functions exercise them.
Source files
gdtest_rst_important/
__init__.py
"""Package testing important RST directives."""
__version__ = "0.1.0"
__all__ = ["initialize", "finalize"]
def initialize(config_path: str) -> None:
"""
Initialize the system from a configuration file.
Parameters
----------
config_path
The path to the configuration file.
Returns
-------
None
.. important::
Must be called before any other function.
"""
pass
def finalize() -> None:
"""
Finalize the system and flush pending operations.
Returns
-------
None
.. important::
Call this to flush all pending operations.
"""
passREADME.md
# gdtest-rst-important Tests important RST directives in docstrings.
great-docs.yml
parser: sphinx