Last active
August 29, 2015 14:15
-
-
Save jgriff/672cc7f116a8d4cea199 to your computer and use it in GitHub Desktop.
asciidoctor-diagram graphviz substitutions not working
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[graphviz] | |
[subs="attributes"] | |
---- | |
digraph g { | |
{propA} -> {propB} | |
} | |
---- |
Perhaps file an issue with https://github.com/asciidoctor/asciidoctor-diagram to investigate. It may be that the custom diagram block is not honoring the substitutions hint.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where
propA
andpropB
are variable substitutions. This does work for thesource
filter (but notgraphviz
):What am I doing wrong?