Test QuickGV: Difference between revisions
Jump to navigation
Jump to search
(→Fuck) |
No edit summary |
||
| Line 1: | Line 1: | ||
= Good = | |||
<quickgv name="G4" theme="warm"> | |||
A [label="Crawler"]; | |||
B1 [label="HTML"]; | |||
B2 [label="CSV"]; | |||
B3 [label="JSON"; | |||
</quickgv> | |||
= Fuck = | = Fuck = | ||
<quickgv name="G3" theme="warm"> | <quickgv name="G3" theme="warm"> | ||
Revision as of 06:06, 31 October 2019
Good
Error:
digraph G4 {
// options
// theme = warm
// usage =
// default settings of graphs
graph [
rankdir = LR,
color = "#804000",
bgcolor = "#fffff7",
fontcolor = "#000000",
fontsize = 12,
style = dashed,
gradientangle = 65,
splines = ortho,
];
// default settings of nodes
node [
shape = box,
style = "filled,rounded",
height = 0.3,
fontsize = 10,
// theme
color = "#c07000",
fontcolor = "#000000",
fillcolor = "#ffffff:#ffffc0",
gradientangle = 295 // left, top -> right, bottom
];
// default settings of edges
edge [
color = "#704000",
fontcolor = "#704000",
fontsize = 10,
arrowsize = 0.6
];
// nodes, edges, and clusters
A [label="Crawler"];
B1 [label="HTML"];
B2 [label="CSV"];
B3 [label="JSON";
}