【发布时间】:2019-09-22 10:50:46
【问题描述】:
【问题讨论】:
标签: github markdown github-flavored-markdown
【问题讨论】:
标签: github markdown github-flavored-markdown
不,GFM (GitHub Flavored Markdown) 单独不支持此功能。
您需要调用第三方在线服务,例如 g.gravizo.com 才能包含文本描述中的任何图表。

<details>
<summary></summary>
custom_mark10
digraph G {
size ="4,4";
main [shape=box];
main -> parse [weight=8];
parse -> execute;
main -> init [style=dotted];
main -> cleanup;
execute -> { make_string; printf};
init -> make_string;
edge [color=red];
main -> printf [style=bold,label="100 times"];
make_string [label="make a string"];
node [shape=box,style=filled,color=".7 .3 1.0"];
execute -> compare;
}
custom_mark10
</details>
这将被生成/显示为:
【讨论】: