Source code for sphinx_graph.vertex.node

"""Docutils Vertex node.

This node is used as a placeholder only, and is replaced after parsing the entire graph.
"""

from __future__ import annotations

from docutils import nodes


[docs] class VertexNode(nodes.General, nodes.Element): """An RST node representing a Vertex."""