This commit is contained in:
parent
3f69a32734
commit
18f1d05ba6
1 changed files with 2 additions and 2 deletions
|
@ -134,9 +134,9 @@ function render(node: Node): string {
|
||||||
case "Hexagram":
|
case "Hexagram":
|
||||||
//outputHTML = "<p><i>" + node.value + "</i></p>";
|
//outputHTML = "<p><i>" + node.value + "</i></p>";
|
||||||
|
|
||||||
node.value = node.value?.replace("</h1>", "</h1><b>"); //TODO: OK??
|
node.value = node.value?.replace("</h1>", "</h1><h3>"); //TODO: OK??
|
||||||
//outputHTML = "<p style=\"font-size: 2rem;\">" + node.value + "</p>"; //TODO: OK??
|
//outputHTML = "<p style=\"font-size: 2rem;\">" + node.value + "</p>"; //TODO: OK??
|
||||||
outputHTML = "<p>" + node.value + "</b></p>"; //TODO: OK??
|
outputHTML = "<p>" + node.value + "</h3></p>"; //TODO: OK??
|
||||||
|
|
||||||
outputHTML = outputHTML + render(node.child!);
|
outputHTML = outputHTML + render(node.child!);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue