create html part 9
All checks were successful
ci / build (push) Successful in 1m6s

This commit is contained in:
Christopher Hase 2025-03-27 13:36:53 +01:00
parent 73b79c6aa1
commit 9a5b78f6e2

View file

@ -126,6 +126,12 @@ function parse(input: string): Node {
function render(node: Node): string {
if (typeof node.type == "undefined") {
console.log("...finished...")
return "";
}
console.log("Render node " + node.type);
var outputHTML: string = "";