antora-confluence
Version:
A tool to convert and publish Antora documentation to Confluence
12 lines (11 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const rewriteMarks = (content) => {
content.querySelectorAll("mark").forEach((mark) => {
mark.replaceWith(`<span style="background:#ff0;color:#000">${mark.childNodes}</style>`);
});
return {
content,
};
};
exports.default = rewriteMarks;