Skip to content

extension

This module holds the code of the Markdown extension responsible for matching "autodoc" instructions.

The extension is composed of a Markdown block processor that matches indented blocks starting with a line like '::: identifier'.

For each of these blocks, it uses a handler to collect documentation about the given identifier and render it with Jinja templates.

Both the collection and rendering process can be configured by adding YAML configuration under the "autodoc" instruction:

::: some.identifier
    handler: python
    selection:
      option1: value1
      option2:
        - value2a
        - value2b
    rendering:
      option_x: etc

AutoDocProcessor(parser, md, config, handlers, autorefs) ¤

Bases: BlockProcessor

Our "autodoc" Markdown block processor.

It has a test method that tells if a block matches a criterion, and a run method that processes it.

It also has utility methods allowing to get handlers and their configuration easily, useful when processing a matched block.

Parameters:

Name Type Description Default
parser BlockParser

A markdown.blockparser.BlockParser instance.

required
md Markdown

A markdown.Markdown instance.

required
config dict

The configuration of the mkdocstrings plugin.

required
handlers Handlers

The handlers container.

required
autorefs AutorefsPlugin

The autorefs plugin instance.

required
Source code in mkdocstrings/extension.py
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
def __init__(
    self, parser: BlockParser, md: Markdown, config: dict, handlers: Handlers, autorefs: AutorefsPlugin
) -> None:
    """Initialize the object.

    Arguments:
        parser: A `markdown.blockparser.BlockParser` instance.
        md: A `markdown.Markdown` instance.
        config: The [configuration][mkdocstrings.plugin.MkdocstringsPlugin.config_scheme]
            of the `mkdocstrings` plugin.
        handlers: The handlers container.
        autorefs: The autorefs plugin instance.
    """
    super().__init__(parser=parser)
    self.md = md
    self._config = config
    self._handlers = handlers
    self._autorefs = autorefs
    self._updated_envs: set = set()

run(parent, blocks) ¤

Run code on the matched blocks.

The identifier and configuration lines are retrieved from a matched block and used to collect and render an object.

Parameters:

Name Type Description Default
parent Element

The parent element in the XML tree.

required
blocks MutableSequence[str]

The rest of the blocks to be processed.

required
Source code in mkdocstrings/extension.py
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
def run(self, parent: Element, blocks: MutableSequence[str]) -> None:
    """Run code on the matched blocks.

    The identifier and configuration lines are retrieved from a matched block
    and used to collect and render an object.

    Arguments:
        parent: The parent element in the XML tree.
        blocks: The rest of the blocks to be processed.
    """
    block = blocks.pop(0)
    match = self.regex.search(block)

    if match:
        if match.start() > 0:
            self.parser.parseBlocks(parent, [block[: match.start()]])
        # removes the first line
        block = block[match.end() :]

    block, the_rest = self.detab(block)

    if match:
        identifier = match["name"]
        heading_level = match["heading"].count("#")
        log.debug(f"Matched '::: {identifier}'")

        html, handler, data = self._process_block(identifier, block, heading_level)
        el = Element("div", {"class": "mkdocstrings"})
        # The final HTML is inserted as opaque to subsequent processing, and only revealed at the end.
        el.text = self.md.htmlStash.store(html)
        # So we need to duplicate the headings directly (and delete later), just so 'toc' can pick them up.
        headings = handler.get_headings()
        el.extend(headings)

        page = self._autorefs.current_page
        if page:
            for heading in headings:
                anchor = heading.attrib["id"]  # noqa: WPS440
                self._autorefs.register_anchor(page, anchor)  # noqa: WPS441

                if "data-role" in heading.attrib:
                    self._handlers.inventory.register(
                        name=anchor,  # noqa: WPS441
                        domain=handler.domain,
                        role=heading.attrib["data-role"],
                        uri=f"{page}#{anchor}",  # noqa: WPS441
                    )

        parent.append(el)

    if the_rest:
        # This block contained unindented line(s) after the first indented
        # line. Insert these lines as the first block of the master blocks
        # list for future processing.
        blocks.insert(0, the_rest)

test(parent, block) ¤

Match our autodoc instructions.

Parameters:

Name Type Description Default
parent Element

The parent element in the XML tree.

required
block str

The block to be tested.

required

Returns:

Type Description
bool

Whether this block should be processed or not.

Source code in mkdocstrings/extension.py
78
79
80
81
82
83
84
85
86
87
88
def test(self, parent: Element, block: str) -> bool:
    """Match our autodoc instructions.

    Arguments:
        parent: The parent element in the XML tree.
        block: The block to be tested.

    Returns:
        Whether this block should be processed or not.
    """
    return bool(self.regex.search(block))

MkdocstringsExtension(config, handlers, autorefs, **kwargs) ¤

Bases: Extension

Our Markdown extension.

It cannot work outside of mkdocstrings.

Parameters:

Name Type Description Default
config dict

The configuration items from mkdocs and mkdocstrings that must be passed to the block processor when instantiated in extendMarkdown.

required
handlers Handlers

The handlers container.

required
autorefs AutorefsPlugin

The autorefs plugin instance.

required
**kwargs Any

Keyword arguments used by markdown.extensions.Extension.

{}
Source code in mkdocstrings/extension.py
239
240
241
242
243
244
245
246
247
248
249
250
251
252
def __init__(self, config: dict, handlers: Handlers, autorefs: AutorefsPlugin, **kwargs: Any) -> None:
    """Initialize the object.

    Arguments:
        config: The configuration items from `mkdocs` and `mkdocstrings` that must be passed to the block processor
            when instantiated in [`extendMarkdown`][mkdocstrings.extension.MkdocstringsExtension.extendMarkdown].
        handlers: The handlers container.
        autorefs: The autorefs plugin instance.
        **kwargs: Keyword arguments used by `markdown.extensions.Extension`.
    """
    super().__init__(**kwargs)
    self._config = config
    self._handlers = handlers
    self._autorefs = autorefs

extendMarkdown(md) ¤

Register the extension.

Add an instance of our AutoDocProcessor to the Markdown parser.

Parameters:

Name Type Description Default
md Markdown

A markdown.Markdown instance.

required
Source code in mkdocstrings/extension.py
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
def extendMarkdown(self, md: Markdown) -> None:  # noqa: N802 (casing: parent method's name)
    """Register the extension.

    Add an instance of our [`AutoDocProcessor`][mkdocstrings.extension.AutoDocProcessor] to the Markdown parser.

    Arguments:
        md: A `markdown.Markdown` instance.
    """
    md.parser.blockprocessors.register(
        AutoDocProcessor(md.parser, md, self._config, self._handlers, self._autorefs),
        "mkdocstrings",
        priority=75,  # Right before markdown.blockprocessors.HashHeaderProcessor
    )
    md.treeprocessors.register(
        _PostProcessor(md),
        "mkdocstrings_post",
        priority=4,  # Right after 'toc'.
    )