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

This commit is contained in:
Christopher Hase 2025-03-27 14:01:33 +01:00
parent 6980de71ac
commit 768c91e0b3

View file

@ -127,13 +127,14 @@ function parse(input: string): Node {
function render(node: Node): string { function render(node: Node): string {
//if (typeof node.type == "undefined") { //if (typeof node.type == "undefined") {
if (node.type == undefined) { //if (node.type == undefined) {
if (node == undefined) {
console.log("...finished...") console.log("...finished...")
return ""; return "";
} }
console.log("Render node 2" + node.type); console.log("Render node " + node.type);
var outputHTML: string = ""; var outputHTML: string = "";