This commit is contained in:
parent
0fb9464998
commit
d50f3f76c9
1 changed files with 1 additions and 1 deletions
|
@ -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>";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue