Search notes:
dot language
The dot language allows to
describe directed or undirected graphs
.
Keywords
The dot language consists of six keywords only:
node
edge
graph
digraph
(digraph stands for directed graph)
subgraph
strict
(Only applicable to
graph
and
digraph
)
These keywords are case insensitive.
Comments
graphviz has the same comment style as
C++
:
/* comment comment */ // comment
Lines that start with a
#
are discarded as well.
Statements
Statements might be optionally ended with a semicolon (
;
).
See also
Graphviz
Index