From 1bf4953953bb5bc4b2931e9880e5774363d1f976 Mon Sep 17 00:00:00 2001 From: Thorsten Vitt Date: Wed, 26 Sep 2018 22:00:12 +0200 Subject: [PATCH] Added stylesheet link to macrogenesis svgs Fixes #470 --- visualize.py | 1 + 1 file changed, 1 insertion(+) diff --git a/visualize.py b/visualize.py index 25fe715..cf8b13d 100644 --- a/visualize.py +++ b/visualize.py @@ -126,6 +126,7 @@ def write_dot(graph: nx.MultiDiGraph, target='base_graph.dot', style=_load_style agraph.node_attr['fontname'] = 'Ubuntu derivative Faust' agraph.node_attr['fontsize'] = 12 agraph.graph_attr['rankdir'] = 'LR' + agraph.graph_attr['stylesheet'] = '/css/webfonts.css' # extract the timeline timeline = agraph.add_subgraph([node for node in agraph.nodes() if node.attr['kind'] == 'date'],