This commit is contained in:
parent
9a5b78f6e2
commit
b112d13e9d
1 changed files with 2 additions and 1 deletions
|
@ -126,7 +126,8 @@ function parse(input: string): Node {
|
|||
|
||||
function render(node: Node): string {
|
||||
|
||||
if (typeof node.type == "undefined") {
|
||||
//if (typeof node.type == "undefined") {
|
||||
if (node.type == undefined) {
|
||||
console.log("...finished...")
|
||||
|
||||
return "";
|
||||
|
|
Loading…
Reference in a new issue