idea: Tags appear as hollow circles on the graph (#1129)
* Tags appear as hollow circles on the graph
Added a few lines to make tags appear as hollow circles on the graph, as opposed to pages which are plain circles, for better visual separation.
* Applied Prettier code style
| | |
| | | // @ts-ignore |
| | | .call(drag(simulation)) |
| | | |
| | | // make tags hollow circles |
| | | node |
| | | .filter((d) => d.id.startsWith("tags/")) |
| | | .attr("stroke", color) |
| | | .attr("stroke-width", 2) |
| | | .attr("fill", "var(--light)") |
| | | |
| | | // draw labels |
| | | const labels = graphNode |
| | | .append("text") |