Differences between revisions 2 and 8 (spanning 6 versions)
Revision 2 as of 2010-03-11 12:33:13
Size: 144
Editor: ZoomQuiet
Comment:
Revision 8 as of 2010-07-27 09:23:12
Size: 175
Editor: ZoomQuiet
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
{{{#!GraphViz dot
digraph SomeGraph {
  $STD_GRAPH_HEADER
A->{ B C }
  B->C->D
}
}}}
`{{{#!dot`

`
digraph SomeGraph {`

`
rankdir=LR;`

` 甲
->{ };`

`
  乙->->丁;`

`
}`

`
}}}`

{{{#!dot

digraph SomeGraph {

    rankdir=LR;

    甲->{ 乙 丙 };

    乙->丙->丁;

}

}}}

GraphVizForMoin/DotScript (last edited 2010-07-27 09:23:12 by ZoomQuiet)