mirror of
https://github.com/svg/svgo.git
synced 2026-01-25 18:41:39 +03:00
16 lines
384 B
Plaintext
16 lines
384 B
Plaintext
Should process/optimize q correctly even if useless commands in between.
|
|
|
|
See: https://github.com/svg/svgo/issues/1926
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 20">
|
|
<path d="M-6.3 9.9q.7-4.5.2-5-.5-.5-1.5-.5l0 0q-.4 0-2 .3"/>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 20">
|
|
<path d="M-6.3 9.9q.7-4.5.2-5t-1.5-.5q-.4 0-2 .3"/>
|
|
</svg>
|