create html part 20

This commit is contained in:
Christopher Hase 2025-03-27 15:50:31 +01:00
parent 6d05c66a5c
commit 64a18dac23

View file

@ -135,7 +135,7 @@ function render(node: Node): string {
//outputHTML = "<p><i>" + node.value + "</i></p>";
node.value = node.value?.replace("</h1>", "</h1>"); //TODO: OK??
outputHTML = "<p style=\"font-size: 20px;\">" + node.value + "</p>"; //TODO: OK??
outputHTML = "<p style=\"font-size: 24px;\">" + node.value + "</p>"; //TODO: OK??
outputHTML = outputHTML + render(node.child!);