markdown-preview.nvim icon indicating copy to clipboard operation
markdown-preview.nvim copied to clipboard

dot edge is not rendered correctly

Open shiluotang opened this issue 4 years ago • 0 comments

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 7618D892-5CB6-4854-B5BA-AB9E452B49CE

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

F29B9B67-C760-425D-839C-1CE86B9568DE

shiluotang avatar Oct 29 '21 10:10 shiluotang