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

This commit is contained in:
Christopher Hase 2025-03-27 16:08:40 +01:00
parent 3f69a32734
commit 18f1d05ba6

View file

@ -134,9 +134,9 @@ function render(node: Node): string {
case "Hexagram": case "Hexagram":
//outputHTML = "<p><i>" + node.value + "</i></p>"; //outputHTML = "<p><i>" + node.value + "</i></p>";
node.value = node.value?.replace("</h1>", "</h1><b>"); //TODO: OK?? node.value = node.value?.replace("</h1>", "</h1><h3>"); //TODO: OK??
//outputHTML = "<p style=\"font-size: 2rem;\">" + node.value + "</p>"; //TODO: OK?? //outputHTML = "<p style=\"font-size: 2rem;\">" + node.value + "</p>"; //TODO: OK??
outputHTML = "<p>" + node.value + "</b></p>"; //TODO: OK?? outputHTML = "<p>" + node.value + "</h3></p>"; //TODO: OK??
outputHTML = outputHTML + render(node.child!); outputHTML = outputHTML + render(node.child!);