Turn off collapseBooleanAttributes, which was causing the issue.
This commit is contained in:
parent
8502b590a3
commit
e7625491d6
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ module.exports = function(grunt) {
|
||||||
return '/' + path.substr(3); // remove the ../
|
return '/' + path.substr(3); // remove the ../
|
||||||
},
|
},
|
||||||
htmlmin: {
|
htmlmin: {
|
||||||
collapseBooleanAttributes: true,
|
collapseBooleanAttributes: false,
|
||||||
collapseWhitespace: true,
|
collapseWhitespace: true,
|
||||||
removeAttributeQuotes: true,
|
removeAttributeQuotes: true,
|
||||||
removeComments: true, // Only if you don't use comment directives!
|
removeComments: true, // Only if you don't use comment directives!
|
||||||
|
|
Reference in a new issue