Open carljm opened 8 years ago
I've found a workaround for this issue, by overriding the _proof-quote function and using the str-replace function from https://css-tricks.com/snippets/sass/str-replace-function/:
@import 'sass-json-export.scss';
@function _proof-quote($value) {
@return '"#{str-replace($value, '"', '\\"')}"';
}
Double-quote characters within a string value need to be backslash-escaped.