doc: move graphviz material to developer-guides

Rather than a "tutorial", it was suggested to move the graphviz
information to the devleoper-guides, along with the documentation
guidelines.  Makes sense.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder
2018-06-29 11:51:56 -07:00
committed by David Kinder
parent 5d94e9bbf0
commit 05d2558f9f
8 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
digraph {
bgcolor="transparent"; rankdir=LR;
{ a [shape=circle height="1" style=filled color=AntiqueWhite
label="Circle\nLabel"]
b [shape=box height="1" width="1" style="rounded,filled"
color="#F080F0" label="Square\nLabel"]
}
a -> b
}