mirror of
https://github.com/svg/svgo.git
synced 2025-07-29 20:21:14 +03:00
22 lines
377 B
XML
22 lines
377 B
XML
Remove inheritable overriden groups attributes
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<g attr1="val1">
|
|
<g fill="red">
|
|
<path fill="green" d="..."/>
|
|
</g>
|
|
<path d="..."/>
|
|
</g>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<g attr1="val1">
|
|
<path fill="green" d="..."/>
|
|
<path d="..."/>
|
|
</g>
|
|
</svg>
|