is there a way to force inkscape to use SVG attributes instead of CSS styles?
For example, I want
Code: Select all
<rect fill="red" stroke="blue" />
instead of
Code: Select all
<rect style="fille:red;stroke:blue" />
in my SVG file.
Code: Select all
<rect fill="red" stroke="blue" />
Code: Select all
<rect style="fille:red;stroke:blue" />
rulanad wrote:is there a way to force inkscape to use SVG attributes instead of CSS styles? (…)