mirror of
https://github.com/svg/svgo.git
synced 2025-09-14 09:49:20 +03:00
14 lines
169 B
XML
14 lines
169 B
XML
Removes empty attributes
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<g attr1="" attr2=""/>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<g/>
|
|
</svg>
|