From d50f3f76c93395f7d8c2ed8a7910cb7e94ca6ca6 Mon Sep 17 00:00:00 2001 From: Christopher Hase Date: Mon, 31 Mar 2025 09:45:03 +0200 Subject: [PATCH] more html part 3 --- broker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/broker.ts b/broker.ts index 9533811..eae29e9 100644 --- a/broker.ts +++ b/broker.ts @@ -171,7 +171,7 @@ function parse(input: string): Node { const changingLines: Node = { type: "ChangingLines"}; currentNode.child = changingLines; currentNode = changingLines; - currentNode.value = line + "
"; + currentNode.value = line; // + "
"; TODO: try without this
} else { currentNode.value = currentNode.value + line + "
"; }