Attributes(node, { treeAdapter }) {
let html = '';
for (const attr of treeAdapter.getAttrList(node)) {
html += ' ';
if (attr.namespace) {
switch (attr.namespace) {
case html_js_1.NS.XML: {
html += `xml:${attr.name}`;
break;
}
case html_js_1.NS.XMLNS: {
if (attr.name !== 'xmlns') {
html += 'xmlns:';
}
html += attr.name;
break;
}
case html_js_1.NS.XLINK: {
html += `xlink:${attr.name}`;
break;
}
default: {
html += `${attr.prefix}:${attr.name}`;
}
}
}
else {
html += attr.name;
}
html += `="${(0, escape_1.escapeAttribute)(attr.value)}"`;
}
return html;
}
function serializeTextNode(node, options) {
const { treeAdapter } = options;
const content = treeAdapter.getTextNodeContent(node);
const parent = treeAdapter.getParentNode(node);
const parentTn = parent && treeAdapter.isElementNode(parent) && treeAdapter.getTagName(parent);
return parentTn &&
treeAdapter.getNamespaceURI(parent) === html_js_1.NS.HTML &&
(0, html_js_1.hasUnescapedText)(parentTn, options.scriptingEnabled)
? content
: (0, escape_1.escapeText)(content);
}
function serializeCommentNode(node, { treeAdapter }) {
return ``;
}
function serializeDocumentTypeNode(node, { treeAdapter }) {
return ``;
}