das ist text der einfach so dahin fließt. Eine Fußnote 1)
und eine Zweite 2).
Graphviz will im Moment noch nicht:
digraph DokuWikiParser {
node [style=rounded, fontname=Arial, fontsize=13];
edge [fontname=Arial, fontsize=11];
P [label=Parser, shape=box, pin=true, pos="1,3.5"];
H [label=Handler, shape=box, pin=true, pos="3,2"];
CC [label="Client Code", shape=box, pin=true, pos="3,3.5"];
L [label=Lexer, shape=box, pin=true, pos="1,2"];
M [label=Modes, shape=box, pin=true, pos="1,1"];
CC -> P [label="Input String"];
H -> CC [label="Render\nInstructions"];
P -> L [label="Modes\n+\nInput String"];
L -> H [label=Tokens];
L -> M [arrowhead=none];