This is an enormous simplification of what I'm trying to do, but suppose I build an entire CSS declaration into an SCSS variable, like:
$myclass: "
.myclass {
display: block; }";
//Now I just want to 'echo' the string $myclass directly to the CSS
Is there any way to do that?