Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = collapseAttributeWhitespace;
|
|
|
|
var _collapseAttributeWhitespace = require("./collapseAttributeWhitespace");
|
|
|
|
/** Deduplicate values inside list-like attributes (e.g. class, rel) */
|
|
function collapseAttributeWhitespace(tree) {
|
|
tree.walk(node => {
|
|
if (!node.attrs) {
|
|
return node;
|
|
}
|
|
|
|
Object.keys(node.attrs).forEach(attrName => {
|
|
const attrNameLower = attrName.toLowerCase();
|
|
|
|
if (!_collapseAttributeWhitespace.attributesWithLists.has(attrNameLower)) {
|
|
return;
|
|
}
|
|
|
|
const attrValues = node.attrs[attrName].split(/\s/);
|
|
const uniqeAttrValues = new Set();
|
|
const deduplicatedAttrValues = [];
|
|
attrValues.forEach(attrValue => {
|
|
if (!attrValue) {
|
|
// Keep whitespaces
|
|
deduplicatedAttrValues.push('');
|
|
return;
|
|
}
|
|
|
|
if (uniqeAttrValues.has(attrValue)) {
|
|
return;
|
|
}
|
|
|
|
deduplicatedAttrValues.push(attrValue);
|
|
uniqeAttrValues.add(attrValue);
|
|
});
|
|
node.attrs[attrName] = deduplicatedAttrValues.join(' ');
|
|
});
|
|
return node;
|
|
});
|
|
return tree;
|
|
} |