mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-08 08:26:55 +00:00
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>
10 lines
269 B
Plaintext
10 lines
269 B
Plaintext
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
|
|
}
|