You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quoted node name in dot file should not produce duplicate quotes under graphml file.
per .dot file spec, node ID can have quotes.
An ID is one of the following:
Any string of alphabetic ([a-zA-Z\200-\377]) characters, underscores ('_') or digits ([0-9]), not > beginning with a digit;
a numeral [-]?(.[0-9]+ | [0-9]+(.[0-9]*)? );
any double-quoted string ("...") possibly containing escaped quotes (")1;
an HTML string (<...>).
Actual
node id has redundant quote.
<node id=""n1"">
<node id=""n2"">
The text was updated successfully, but these errors were encountered:
Steps to reproduce
Given the following
quoted-node.dot
file:graphwalker-cli conversion with the following command:
will produce the following output:
Expected
quoted node name in dot file should not produce duplicate quotes under graphml file.
per
.dot
file spec, node ID can have quotes.Actual
node id has redundant quote.
The text was updated successfully, but these errors were encountered: