gographviz
gographviz copied to clipboard
Parses the Graphviz DOT language in golang
Hello Walter, thanks for the lib. Would there be a way to skip the "is not a valid attribute" for attributes name not in your list? Cheers
I am using the following to update node labels in an `Escape` ``` graph.Nodes.Lookup[id].Attrs.Extend(attrs) ``` but the new label is not automatically escaped. Maybe there is a better way to...
From the spec http://www.graphviz.org/content/dot-language ``` As another aid for readability, dot allows double-quoted strings to span multiple physical lines using the standard C convention of a backslash immediately preceding a...
Hi, all. I am trying to use the node, edge, and graph statement from the [Lexical and Semantic Notes](https://graphviz.org/doc/info/lang.html). However, since this library always sorts and prints nodes, the order...
The `Character encodings` section mentioned in the spec http://www.graphviz.org/content/dot-language still requires some work from gographviz.
The `Subgraphs and Clusters` section mentioned in the spec http://www.graphviz.org/content/dot-language still requires some work from gographviz.
The `Lexical and Semantic Notes` section mentioned in the spec http://www.graphviz.org/content/dot-language still requires some work from gographviz.
isNumber in escape.go is supposed to return true if it is passed a string that represents a number. However, it accepts "127.0.0.1" as a number but dot does not accept...