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

14 lines
274 B
Plaintext

Should convert arc to line
===
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
<path d="m 1 1 a 10000 10000 0 0 0 8 0" stroke="black"/>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
<path d="M1 1h8" stroke="black"/>
</svg>