-
DescriptionHi there,
I cannot see to have any unclosed delimiters or such in my I uploaded my files to https://github.com/produnis/minimal_examples/tree/quarto_internal_scss_error |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Thanks for the report! This is an overactive message we added because we're using an SCSS parser that |
Beta Was this translation helpful? Give feedback.
-
Hi quarto devs You can reproduce it for example by creating a quarto website project, where in the _quarto.yml you use
where styles.scss is /*-- scss:uses --*/
@use "library";
/*-- scss:defaults --*/
$blueish: #1c4e8a;
$body-color: library.$pinkish;
$body-bg: $blueish; and add a $pinkish: #e83e8c; Removing |
Beta Was this translation helpful? Give feedback.
Thanks for the report! This is an overactive message we added because we're using an SCSS parser that
isn't quite robust enough. In this case, that parser doesn't like the two repeated semi-colons you have in the
.author
rule, on line 30.