Comparing version 0.27.4 to 0.27.5
@@ -23,3 +23,3 @@ /*! | ||
exports.version = '0.27.4'; | ||
exports.version = '0.27.5'; | ||
@@ -26,0 +26,0 @@ /** |
@@ -507,4 +507,6 @@ /*! | ||
function interpolate(attr) { | ||
return attr.replace(/#\{([^}]+)\}/g, function(_, expr){ | ||
return quote + " + (" + expr + ") + " + quote; | ||
return attr.replace(/(\\)?#\{([^}]+)\}/g, function(_, escape, expr){ | ||
return escape | ||
? _ | ||
: quote + " + (" + expr + ") + " + quote; | ||
}); | ||
@@ -511,0 +513,0 @@ } |
{ | ||
"name": "jade", | ||
"description": "Jade template engine", | ||
"version": "0.27.4", | ||
"version": "0.27.5", | ||
"author": "TJ Holowaychuk <tj@vision-media.ca>", | ||
@@ -6,0 +6,0 @@ "repository": "git://github.com/visionmedia/jade", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
240386
6171