benweet / stackedit

In-browser Markdown editor
https://stackedit.io/
Apache License 2.0
21.49k stars 2.7k forks source link

Hope stackedit can support graphviz dot digram #662

Open wenerme opened 9 years ago

wenerme commented 9 years ago

This project (https://github.com/mdaines/viz.js/) has implementated to put Graphviz on the web.With dot diagram, I can save a lot images.

BTW, I only got UnionPay card, https://monetizejs.com/ dose no support this~ how about add a sponsoring by paypal.

caseywatts commented 8 years ago

I've been working with viz.js and I think it would work in a way very similar to js-sequence-diagrams! :D

We could probably make an extension very similar to this one: https://github.com/benweet/stackedit/blob/a5ed5bf644987b05ca54e9a9f8122d12f74c330e/public/res/extensions/umlDiagrams.js which uses: https://github.com/benweet/stackedit/blob/a5ed5bf644987b05ca54e9a9f8122d12f74c330e/public/res/main.js#L65

rbondi commented 8 years ago

+1

wenerme commented 8 years ago

http://plantuml.com/plantuml/form is a good alternative. :smile:

kadrach commented 5 years ago

Rendering dot diagrams would be nice. dagre includes a dot parser, perhaps this is an option as well.

jbriales commented 4 years ago

What's the current status on this? Does stackedit support inline graphviz code? I.e. can we do

digraph G {
  "Welcome" -> "To"
  "To" -> "Web"
  "To" -> "GraphViz!"
}

?