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

Fix svg tag indent

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