Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / tests / examplefiles / graphviz / graphviz-dot.gv
Size: Mime:
graph graphname {
	// This attribute applies to the graph itself
	size="1,1";
	// The label attribute can be used to change the label of a node
	a [label="Foo"];
	// Here, the node shape is changed.
	b [shape=box];
	// These edges both have different line properties
	a -- b -- c [color=blue];
	b -- d [style=dotted];
	// [style=invis] hides a node.
}