import { Node } from "./html/highlighter/node";
export function render(nodes: Array): HTMLElement {
const p = document.createElement("pre");
for (const node of nodes) {
const span = document.createElement("span");
span.innerText = node.content;
span.style.color = node.color;
p.appendChild(span);
}
return p;
}