iamcco/markdown-preview.nvim

dot edge is not rendered correctly

Open

#387 geöffnet am 29. Okt. 2021

Auf GitHub ansehen
 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)JavaScript (246 Forks)batch import
help wanted

Repository-Metriken

Stars
 (5.538 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

digraph {
  rankdir=LR;
  node [ shape=record ];

  struct1 [
      label = "a|b|<port1>c";
  ];
  
  struct2 [
      label = "a|{<port2>b1|b2}|c";
  ];
  
  struct1:port1 -> struct2:port2 [ label="xyz" ];
}

is rendered as following, the edge does not comes from "c" part, but from the middle of struct1

According to https://sketchviz.com/graphviz-examples, it should be rendered as this (the right part, ignore the line style)

Contributor Guide