Closed dundalek closed 1 month ago
Attributes in Graphviz can be separated not only by comma, but also a semicolon.
Example of a dot file that currently fails to parse, but works with graphviz dot -Tsvg g.dot > g.svg:
dot -Tsvg g.dot > g.svg
graph { A [color=blue; shape=hexagon] }
Matching rule in DOT language grammar:
@dundalek thanks!
Attributes in Graphviz can be separated not only by comma, but also a semicolon.
Example of a dot file that currently fails to parse, but works with graphviz
dot -Tsvg g.dot > g.svg
:Matching rule in DOT language grammar: