I make svgo --enable convertStyleToAttrs -f . -o ./opt ,
but to see the output folder files tagged with style andclass at paths
what am I doing wrong? ))
@nicothinconvertStyleToAttrs plugin converts the style attribute form each node, not the classes referenced from <style> ~ Example
Using the inlineStyles plugin before convertStyleToAttrs plugin would
make this possible, see related PR https://github.com/svg/svgo/pull/592 .
Most helpful comment
Using the inlineStyles plugin before convertStyleToAttrs plugin would
make this possible, see related PR https://github.com/svg/svgo/pull/592 .