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

17 lines
314 B
Plaintext

Shouldn't incorrectly convert q to t. Should convert q to t when feasible.
===
<svg viewBox="0 0 20 20">
<path d="M0 0q2 0 5 5t5 5q5 0 5 5"/>
<path d="M0 0q2 0 5 5t5 5q2 0 5-2"/>
</svg>
@@@
<svg viewBox="0 0 20 20">
<path d="M0 0q2 0 5 5t5 5q5 0 5 5"/>
<path d="M0 0q2 0 5 5t5 5 5-2"/>
</svg>