module documentation

ReST-style docstring parsing.

Function compose Render a parsed docstring into docstring text.
Function parse Parse the ReST-style docstring into its components.
Function _build_meta Undocumented
def compose(docstring: Docstring, rendering_style: RenderingStyle = RenderingStyle.COMPACT, indent: str = ' ') -> str: (source)

Render a parsed docstring into docstring text.

Parameters
docstring:Docstringparsed docstring representation
rendering_style:RenderingStylethe style to render docstrings
indent:strthe characters used as indentation in the docstring string
Returns
strdocstring text
def parse(text: str | None) -> Docstring: (source)

Parse the ReST-style docstring into its components.

Returns
Docstringparsed docstring
def _build_meta(args: list[str], desc: str) -> DocstringMeta: (source)

Undocumented