美人鱼中的线连接(而不是箭头)

Line connection (instead of arrow) in mermaid

我正在尝试在 R 中创建美人鱼图表。语法似乎非常简单 - 但是我还没有找到在两个形状之间建立 线连接 的可能性没有 箭头。

在这个例子中:

     mermaid("
        graph LR
            sq1[shape one]-- This can't be a shape. So sad. --> sq2[shape two]

            cyr1((circle one))-->cyr2((circle two));
      ")

会得到

在这里,"shape one" 和 "this can't be a shape" 之间的连接是一条线,但是一旦我尝试在两个形状之间使用此连接,输出将不会构建图表。有什么方法可以实现两个形状之间的线连接?

关于 DiagrammeR 文档,连接可以定义为:

--> arrow connection
--- line connection

所以你只需要:

mermaid("
        graph LR
            sq1[shape one]-- This can't be a shape. So sad. --- sq2[shape two]
            cyr1((circle one))---cyr2((circle two));
      ")