Versions in this module Expand all Collapse all v1 v1.0.0 Sep 22, 2022 Changes in this version + func DotToImage(outfname string, format string, dot []byte) (string, error) + type DotAttrs map[string]string + func (p DotAttrs) Lines() string + func (p DotAttrs) List() []string + func (p DotAttrs) String() string + type DotCluster struct + Attrs DotAttrs + Clusters map[string]*DotCluster + ID string + Nodes []*DotNode + Prefix string + func NewDotCluster(id string) *DotCluster + func (c *DotCluster) String() string + type DotEdge struct + Attrs DotAttrs + From *DotNode + To *DotNode + type DotGraph struct + Attrs DotAttrs + Clusters []*DotCluster + Edges []*DotEdge + Nodes []*DotNode + Options map[string]string + Title string + func (g *DotGraph) ShowDot() + func (g *DotGraph) WriteDot(w io.Writer) error + type DotNode struct + Attrs DotAttrs + ID string + func (n *DotNode) String() string