mirror of
https://github.com/svg/svgo.git
synced 2025-09-15 20:41:07 +03:00
- migrated to visitor plugin api - covered with tsdoc - added more test cases - restructured and simplified code
20 lines
228 B
XML
20 lines
228 B
XML
Override group attributes with children attributes
|
|
|
|
===
|
|
|
|
<svg>
|
|
<g fill="red">
|
|
<rect fill="blue" />
|
|
<circle fill="blue" />
|
|
</g>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg>
|
|
<g fill="blue">
|
|
<rect/>
|
|
<circle/>
|
|
</g>
|
|
</svg>
|