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
Hello,
I'm trying to remove whitespace from a <style></style> tag inside an hbs file and only the transformation seems to be a trim, even with ~~[0].
eg: Source:
<style> @media (prefers-color-scheme: dark) { body { color:#fff; background:#333 } a:visited { color: #BB86FC !important } } </style>
Target:
<style>@media(prefers-color-scheme:dark){body{color:#fff;background:#333}a:visited{color:#BB86FC!important}}</style>
Thank you
[0] https://yarte.netlify.app/templating/whitespace_control.html
The text was updated successfully, but these errors were encountered:
It does not have support for minifying css. You can remove blanks with comments. Or you can use another tool to minify it earlier.
In the future you will have support for it. I leave the issue open.
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm trying to remove whitespace from a <style></style> tag inside an hbs file and only the transformation seems to be a trim, even with ~~[0].
eg:
Source:
Target:
Thank you
[0] https://yarte.netlify.app/templating/whitespace_control.html
The text was updated successfully, but these errors were encountered: