Fix ampersand escaping on JS values

This commit is contained in:
David Manzanares 2017-10-10 18:00:47 +02:00
parent cbe66020f9
commit ffdf2d3c9b

View File

@ -33,7 +33,7 @@ tree.Value.prototype = {
var val = this.ev(env);
var v = val.toString();
if(val.is === "color" || val.is === 'uri' || val.is === 'string' || val.is === 'keyword') {
v = "'" + v + "'";
v = "'" + v.replace('&amp', '&') + "'";
} else if (Array.isArray(this.value) && this.value.length > 1) {
// This covers something like `line-dasharray: 5, 10;`
// where the return _value has more than one element.