Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets

Fix svg tag indent

+1 -1
+1 -1
drawsvg/drawing.py
··· 12 12 13 13 XML_HEADER = '<?xml version="1.0" encoding="UTF-8"?>\n' 14 14 SVG_START = ('<svg xmlns="http://www.w3.org/2000/svg" ' 15 - 'xmlns:xlink="http://www.w3.org/1999/xlink"\n ') 15 + 'xmlns:xlink="http://www.w3.org/1999/xlink"\n ') 16 16 SVG_END = '</svg>' 17 17 SVG_CSS_FMT = '<style>/*<![CDATA[*/{}/*]]>*/</style>' 18 18 SVG_JS_FMT = '<script>/*<![CDATA[*/{}/*]]>*/</script>'