in some exported svg files, I don't get IDs for my edges:
<g stroke-linecap="butt" transform="matrix(1,0,0,1,99,208)" stroke-miterlimit="1.45">
<path fill="none" d="M451.74 -177.8338 L613.7444 -177.8338" clip-path="url(#clipPath2)"/>
<path fill="none" d="M406.1867 -128.5332 L447.4233 -89.5512" clip-path="url(#clipPath2)"/>
</g>
And in another case I do:
<g id="yedge6">
<a xlink:href="SW103 P2">
<g stroke-linecap="butt" transform="matrix(1,0,0,1,99,208)" stroke-miterlimit="1.45">
<path fill="none" d="M228.1957 -130.2506 L268.0657 -130.2506"/>
</g>
</a>
</g>
<g id="y.edge.8">
<g stroke-linecap="butt" transform="matrix(1,0,0,1,99,208)" stroke-miterlimit="1.45">
<path fill="none" d="M273.0657 -130.2506 L401.87 -130.2506"/>
</g>
</g>
I think it has to do with adding data to the edge, but I can't repeat it. What to you need to do in yEd before exporting svg to ensure that the output edges are given an id (like the second example)? Is it related to the "<a xlink:href="SW103 P2">...? If so, how do I enter that in yEd? I will be parsing the file, and the IDs are very useful.
Thanks.