yarte icon indicating copy to clipboard operation
yarte copied to clipboard

CSS/Style tags minification/whitespace control

Open gxtaillon opened this issue 4 years ago • 1 comments

Hello,

I'm trying to remove whitespace from a 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

gxtaillon avatar Jun 26 '21 16:06 gxtaillon

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.

zzau13 avatar Jun 27 '21 22:06 zzau13