We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
symbol
Describe the bug
SVGO removes symbols from the SVG even when they're used in styles.
To Reproduce
With this SVG image: https://nicolas-hoizey.photo/ui/logo.svg
SVGO CLI with default configuration removes the <symbol>s, even if they're used in the styles, to make the logo responsive.
<symbol>
It doesn't remove the symbols with this configuration removing the inlineStyles plugin:
inlineStyles
module.exports = { plugins: [ { name: 'preset-default', params: { overrides: { inlineStyles: false, }, }, }, ], };
Expected behavior
symbols should be preserved, as they're useful in the image.
Desktop (please complete the following information):
Additional context
I tried first to optimize my SVG in SVGOMG and got the issue, which I referenced here: jakearchibald/svgomg#417
The text was updated successfully, but these errors were encountered:
I think this is related to issue #1834 and resolved by PR #2056 - media queries were being removed by inlineStyles.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
SVGO removes
symbol
s from the SVG even when they're used in styles.To Reproduce
With this SVG image: https://nicolas-hoizey.photo/ui/logo.svg
SVGO CLI with default configuration removes the
<symbol>
s, even if they're used in the styles, to make the logo responsive.It doesn't remove the
symbol
s with this configuration removing theinlineStyles
plugin:Expected behavior
symbol
s should be preserved, as they're useful in the image.Desktop (please complete the following information):
Additional context
I tried first to optimize my SVG in SVGOMG and got the issue, which I referenced here:
jakearchibald/svgomg#417
The text was updated successfully, but these errors were encountered: