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

This commit is contained in:
Christopher Hase 2025-03-27 15:41:10 +01:00
parent 8bd882760e
commit d3b5d8a5bb

View file

@ -134,8 +134,8 @@ function render(node: Node): string {
case "Hexagram":
//outputHTML = "<p><i>" + node.value + "</i></p>";
node.value = node.value?.replace("</h1>", "</h1><i>"); //TODO: OK??
outputHTML = "<p>" + node.value + "</i></p>"; //TODO: OK??
node.value = node.value?.replace("</h1>", "</h1><b><i>"); //TODO: OK??
outputHTML = "<p>" + node.value + "</i></b></p>"; //TODO: OK??
outputHTML = outputHTML + render(node.child!);