Recently the behaviour of graphviz generated images changed. Since recently the generated images were in vg format. Now I have to specify the format explicitly (see example: first block).
If I omit the format specifier, I get an pdf image, but that cannot be included into the html !?
[graphviz, format="svg"]
----
digraph G {
V [shape=record; label="<l> a | b | ... | z | '\\0' ";];
Zeiger_1 -> V:l;
}
----
[graphviz]
----
digraph G {
V [shape=record; label="<l> a | b | ... | z | '\\0' ";];
Zeiger_2 -> V:l;
}
----
There must be an change in asciidoctor-diagram, but I can't say excactly when this happened.
Is this a know bug?