We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a2fedb + 8ff5893 commit ada6c37Copy full SHA for ada6c37
inspect.cpp
@@ -607,7 +607,11 @@ namespace Sass {
607
if (a->value()->concrete_type() == Expression::NULL_VAL) {
608
return;
609
}
610
- a->value()->perform(this);
+ if (a->value()->concrete_type() == Expression::STRING) {
611
+ String_Constant* s = static_cast<String_Constant*>(a->value());
612
+ if (s->is_quoted()) s->value(quote(unquote(s->value()), String_Constant::double_quote()));
613
+ s->perform(this);
614
+ } else a->value()->perform(this);
615
if (a->is_rest_argument()) {
616
append_to_buffer("...");
617
0 commit comments