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 ../
|
||||
},
|
||||
htmlmin: {
|
||||
collapseBooleanAttributes: true,
|
||||
collapseBooleanAttributes: false,
|
||||
collapseWhitespace: true,
|
||||
removeAttributeQuotes: true,
|
||||
removeComments: true, // Only if you don't use comment directives!
|
||||
|
|
Reference in a new issue