What does this plugin do?

It creates a copy of an SVG file to allow customization of SVG symbol settings in QGIS.

How?

It modifies all SVGs in a folder by replacing the parameters contained in the path tags and re-saving the new SVGs in the format qgs_oldname.svg. The parameters taken into account are as follows:

Example

Before modification:

<path
    style="fill:none ; stroke:#000000 ; stroke-width:0.4"
/>

alt text

After modification:

<path
    style="fill:none ; stroke:param(outline) #000000 ; stroke-width:param(outline-width) 0.4"
/>

alt text