flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
19
BACK_BACK/node_modules/htmlnano/lib/modules/removeAttributeQuotes.js
generated
vendored
Executable file
19
BACK_BACK/node_modules/htmlnano/lib/modules/removeAttributeQuotes.js
generated
vendored
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = removeAttributeQuotes;
|
||||
|
||||
// Specification: https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
|
||||
// See also: https://github.com/posthtml/posthtml-render/pull/30
|
||||
// See also: https://github.com/posthtml/htmlnano/issues/6#issuecomment-707105334
|
||||
|
||||
/** Disable quoteAllAttributes while not overriding the configuration */
|
||||
function removeAttributeQuotes(tree) {
|
||||
if (tree.options && typeof tree.options.quoteAllAttributes === 'undefined') {
|
||||
tree.options.quoteAllAttributes = false;
|
||||
}
|
||||
|
||||
return tree;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue