docs: improve the featuremap's layout

This commit is contained in:
Thomas Nagy 2022-05-17 20:12:05 +02:00
parent b093e9eac7
commit 6b820ba879
1 changed files with 2 additions and 1 deletions

View File

@ -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) * '='