usvg 0.2.0

An SVG simplification library.
Documentation
keep_named_groups = true
input = '''
<svg viewBox="0 0 1 1">
    <g id="some_group">
        <rect width="10" height="10"/>
    </g>
</svg>
'''
output = '''
<svg
    width="1"
    height="1"
    viewBox="0 0 1 1"
    preserveAspectRatio="xMidYMid"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns="http://www.w3.org/2000/svg"
    xmlns:usvg="https://github.com/RazrFalcon/usvg"
    usvg:version="0.2.0">
    <defs/>
    <g
        id="some_group">
        <path
            fill="#000000"
            fill-opacity="1"
            fill-rule="nonzero"
            stroke="none"
            d="M 0 0 L 10 0 L 10 10 L 0 10 Z"/>
    </g>
</svg>
'''