美人鱼CLI-您如何换行?

时间:2019-10-31 08:48:47

标签: diagram flowchart mermaid

我正在使用Mermaid CLI生成流程图(https://unpkg.com/mermaid@0.5.6/exdoc/all.html#mermaid)。效果很好,但我不知道为什么隐藏在矩形后面的某些节点文本

$string1 = "first active action";
$string2 = "second active action";
$flow_string = 'graph TD;';
$flow_string .= " A[".$string1."]-->B[".$string2."];";

有人向我解释,我在下面的html标签中使用上面的字符串。

<div class="mermaid">
    <?php echo $flow_string;?>
</div>

一切正常,但自动绘制的流程图出现问题。

有人可以帮助我解决这个问题吗?

flowchart_image

0 个答案:

没有答案