more html part 3
All checks were successful
ci / build (push) Successful in 1m5s

This commit is contained in:
Christopher Hase 2025-03-31 09:45:03 +02:00
parent 0fb9464998
commit d50f3f76c9

View file

@ -171,7 +171,7 @@ function parse(input: string): Node {
const changingLines: Node = { type: "ChangingLines"};
currentNode.child = changingLines;
currentNode = changingLines;
currentNode.value = line + "<br>";
currentNode.value = line; // + "<br>"; TODO: try without this <br>
} else {
currentNode.value = currentNode.value + line + "<br>";
}