The following works in my gitit wiki on firefox using my (simple) plugin that calls out to graphviz to generate the html. The html output works fine in devonthink. How might I get the source wiki page to render in devonthink? The html output is roughly: gist:fc62ccdc5b9d65e8a0a27f46e1826761 · GitHub
If you hover the mouse over “SIMPLE APPLIED MATH”, it turns blue.
<style>
svg a text {fill: red;}
svg a text:hover {fill: blue;}
</style>
~~~ {.dot}
digraph finite_state_machine {
size="8,2.5";
node [target="_top"];
CGT0 [label="Surreal Numbers\nKnuth"];
{ node [penwidth=1, shape=rectangle, fontcolor=blue, style=dashed];
EXT1 [label=" SIMPLE APPLIED MATH " , URL="/studies/mathematics"];
}
EXT1 -> CGT0;
}
~~~