From d1e281f6eb2ca8b89a1e657a540c94d5a7c94384 Mon Sep 17 00:00:00 2001 From: "David B. Kinder" Date: Wed, 6 Jun 2018 15:03:26 -0700 Subject: [PATCH] doc: add graphviz extension graphviz lets us create graphic images via a text language rather than creating drawings in other tools (eliminating the need to keep the sources for the images available, such as a powerpoint file). Signed-off-by: David B. Kinder --- doc/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index dae6919dee..12b61a2686 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -30,7 +30,9 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['breathe'] +extensions = ['breathe', 'sphinx.ext.graphviz'] + +graphviz_output_format='svg' # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']