Skip to content

Instantly share code, notes, and snippets.

@dabenny
dabenny / svg2mxgraph.py
Last active March 19, 2024 17:27 — forked from yves-chevallier/svg2mxgraph.py
SVG to mxGraph experiment
"""
MxGraph Primitives
<move x="0" y="0"/>
<line x="0" y="0"/>
<quad x1="0" y1="0" x2="0" y2="0"/>
<curve x1="0" y1="0" x2="0" y2="0" x3="0" y3="0"/>
"""
from xml.dom import minidom
import re