From f5efcb33f971363686bf24b5d6eb9fb6ec2067fb Mon Sep 17 00:00:00 2001 From: Martin Bless Date: Thu, 1 Oct 2020 17:33:07 +0200 Subject: [PATCH] Add Defaults.cfg, update conf.py, add Graphviz --- ALL-for-build/Makedir/Defaults.cfg | 37 ++++++++++++++++++++++++++++++ ALL-for-build/Makedir/conf.py | 1 + 2 files changed, 38 insertions(+) create mode 100644 ALL-for-build/Makedir/Defaults.cfg diff --git a/ALL-for-build/Makedir/Defaults.cfg b/ALL-for-build/Makedir/Defaults.cfg new file mode 100644 index 0000000..c08e227 --- /dev/null +++ b/ALL-for-build/Makedir/Defaults.cfg @@ -0,0 +1,37 @@ +# coding: utf-8 + +# ##### +# +# Defaults.cfg - A TYPO3 Documentation Project's Configuration File +# +# About Syntax: +# See https://docs.python.org/2/library/configparser.html +# +# Put comments in separate lines! +# +# ##### + + +# ATTENTION: +# LEAVE RIGHT SIDE EMPTY for a 'False' value like: +# example_of_false_value = + + +[general] + +; endless list of all of the general simple settings you can use in 'conf.py' + +# Graphviz +# https://www.sphinx-doc.org/en/master/usage/extensions/graphviz.html + +# graphviz_output_format = png svg +graphviz_output_format = svg + +# Plantuml +# https://pypi.org/project/sphinxcontrib-plantuml/ + +# plantuml_output_format = png svg svg_img svg_obj none +plantuml_output_format = svg + +# plantuml_latex_output_format = eps pdf png none +plantuml_latex_output_format = eps diff --git a/ALL-for-build/Makedir/conf.py b/ALL-for-build/Makedir/conf.py index 030f689..cea44c8 100644 --- a/ALL-for-build/Makedir/conf.py +++ b/ALL-for-build/Makedir/conf.py @@ -171,6 +171,7 @@ def merge_settings_file(fpath, D, notes): 'sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.extlinks', + 'sphinx.ext.graphviz', 'sphinx.ext.ifconfig', 'sphinx.ext.intersphinx', 'sphinx.ext.mathjax',