You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Twiki has/had a plugin that allowed you to author graphviz dot diagrams inline. It would be really cool to support writing something like this in the github wikis:
```graphviz-digraph
digraph G {
main -> parse -> execute;
main -> init;
main -> cleanup;
execute -> make_string;
execute -> printf
init -> make_string;
main -> printf;
execute -> compare;
}
And inline getting this in the preview/output:
The text was updated successfully, but these errors were encountered:
Thanks for the request. I think it would be really cool to do this kind of processing (and things like .Rmd in #343).
This gem focuses on abstracting the conversion from the various markup formats to html, so it probably would get implemented as a layer on top of this. I've logged your feature request with our internal teams.
Twiki has/had a plugin that allowed you to author graphviz dot diagrams inline. It would be really cool to support writing something like this in the github wikis:
And inline getting this in the preview/output:

The text was updated successfully, but these errors were encountered: