From f05624b8fa27bd43a6f0a82eee2807e3625161ba Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Tue, 17 May 2022 20:12:05 +0200 Subject: [PATCH] docs: improve the featuremap's layout --- docs/sphinx/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index c317be93..87cf040d 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -258,7 +258,8 @@ for z in lst: for x, y in links: ms.append('\t\t"%s" -> "%s" [arrowsize=0.5,style="setlinewidth(0.5)"];' % (x, y)) - rs = '\tdigraph feature_%s {\n\t\tsize="8.0, 12.0";\n%s\n\t}\n' % (z == '*' and 'all' or z, '\n'.join(ms)) + #rs = '\tdigraph feature_%s {\n\t\tsize="8.0, 12.0";\n%s\n\t}\n' % (z == '*' and 'all' or z, '\n'.join(ms)) + rs = '\tdigraph feature_%s {\n\t\t\n%s\n\t}\n' % (z == '*' and 'all' or z, '\n'.join(ms)) title = "Feature %s" % (z == '*' and '\\*' or z) title += "\n" + len(title) * '='