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 + "
"; }