-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
could it support markdown flow&sequence diagram syntax? #173
Comments
The syntax highlighting of code fenced blocks is done by the IDE and will support only languages that are defined in the IDE. If you have a plugin that supports |
@leion8310, if there is a web service that can convert the syntax to an image then you can use the multi-line image url similar to UML diagrams. See #103 |
@leion8310, I tried to figure out what diagram corresponds to the flow syntax you have given and convert it to start UML syntax. Is the following diagram close? The markdown version is: ![graviso](http://g.gravizo.com/g?
@startuml;
(*) --> ["开始"] if "确认?" then;
-->[结束](*);
else;
->[no] "我的操作";
@enduml
) For github you will need to copy the generated HTML since it does not handle multi-line gravizo image URLs <img src="http://g.gravizo.com/g?%0A%40startuml%3B%20%28*%29%20--%3E%20%5B%22%E5%BC%80%E5%A7%8B%22%5D%20if%20%22%E7%A1%AE%E8%AE%A4%EF%BC%9F%22%20then%3B%20--%3E%5B%E7%BB%93%E6%9D%9F%5D%20%28*%29%3B%20else%3B%20-%3E%5Bno%5D%20%22%E6%88%91%E7%9A%84%E6%93%8D%E4%BD%9C%22%3B%20%40enduml" alt="gravizo" /> |
as like follow syntax
sequence 张三->李四: 嘿,小四儿, 写博客了没? Note right of 李四: 李四愣了一下,说: 李四-->张三: 忙得吐血,哪有时间写。
The text was updated successfully, but these errors were encountered: