Skip to content

Instantly share code, notes, and snippets.

@sverweij
sverweij / highlight-graphviz-edge.html
Last active August 4, 2024 10:29
Highlight an edge in a graphviz generated svg
<!-- slap this somewhere at the top -->
<style>
/* the lines within the edges */
.edge:active path,
.edge:hover path {
stroke: fuchsia;
stroke-width: 3;
stroke-opacity: 1;
}
/* arrows are typically drawn with a polygon */