sphinx.ext.graphviz

sphinx.ext.graphviz

This page has been automatically generated.


This requires registering the sphinx.ext.graphviz extension in the documentation’s configuration file.

This page shows an example of various graphviz capabilities. An example of a graphviz directive is as follows:

.. graphviz::

    digraph foo {
        "bar" -> "baz";
    }

Output

An example of the rendered output of a embedded graphviz code:

A user can also take advantage of adding an embedding a single undirected graph:

Single directed graphs are supported as well: