Pinegrow removes the quote characters when generating the css

Pinegrow removes the quote characters when generating the css file:
for example:
SCSS:
nav[aria-label=“Main”] { … }
CSS
nav[aria-label=Main] { … }


Pinegrow PRO 7.2 / MacOS (M1)

This should still work while reducing char count. What is the problem you’re facing?

@MONO this is a feature of the SASS compiler (we are using the official DartSass) that makes the generated code shorter.

If needed (for example in nav[aria-label=“Main navigation”] the quotes are preserved.

2 Likes