diff --git a/broker.ts b/broker.ts index aef1def..029597b 100644 --- a/broker.ts +++ b/broker.ts @@ -134,9 +134,9 @@ function render(node: Node): string { case "Hexagram": //outputHTML = "

" + node.value + "

"; - node.value = node.value?.replace("", ""); //TODO: OK?? + node.value = node.value?.replace("", "

"); //TODO: OK?? //outputHTML = "

" + node.value + "

"; //TODO: OK?? - outputHTML = "

" + node.value + "

"; //TODO: OK?? + outputHTML = "

" + node.value + "

"; //TODO: OK?? outputHTML = outputHTML + render(node.child!);