I export some shapes from illustrator to svg. I set their outline to “none”, so they should just have a solíd fill colour. yet, when I draw them, the all have 1px black outlines.
sublime search stroke-width="none"replace stroke="none" ;)
or just remove the attribute completely if value is none. probably faster than using any svg editor.
I remember pasting svg xml to chat gpt and asking it to generate c# code to convert every circle and rectangle into paths … pretty sure it can help you cure your faulty svg as well without having to manually edit your file. Also more sustainable if you need to ever re-export the source.
Like I said, the chat gpt successfully generated some vvvv compatible c# code that was sanitizing the svg in vvvv back then, right after the xml reader (so no need to convert and write back the file at all). Would probably give this a shot for the 2 minutes it takes before patching it yourself