1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-25 18:41:39 +03:00
Files
svgo/test/plugins/convertPathData.29.svg.txt

15 lines
365 B
Plaintext

Should merge M and m, even when Z command is used between.
===
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M1 1m1 1"/>
<path fill="black" d="M8.5 12Zm0 8q3.35 0 5.675-2.325"/>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M2 2"/>
<path fill="black" d="M8.5 20q3.35 0 5.675-2.325"/>
</svg>