Differences between revisions 3 and 8 (spanning 5 versions)
Revision 3 as of 2010-06-04 09:20:20
Size: 146
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:
{{{
{ { {#!dot
digraph SomeGraph {
  甲->{ 乙 丙 };
  乙->丙->丁;
}
} } }
`{{{#!dot`
Line 11: Line 5:
}}} `digraph SomeGraph {`

` rankdir=LR;`

` 甲->{ 乙 丙 };`

` 乙->丙->丁;`

`}`

`}}}`

{{{#!dot

digraph SomeGraph {

    rankdir=LR;

    甲->{ 乙 丙 };

    乙->丙->丁;

}

}}}

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