This commit is contained in:
parent
73b79c6aa1
commit
9a5b78f6e2
1 changed files with 6 additions and 0 deletions
|
@ -126,6 +126,12 @@ function parse(input: string): Node {
|
||||||
|
|
||||||
function render(node: Node): string {
|
function render(node: Node): string {
|
||||||
|
|
||||||
|
if (typeof node.type == "undefined") {
|
||||||
|
console.log("...finished...")
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
console.log("Render node " + node.type);
|
console.log("Render node " + node.type);
|
||||||
|
|
||||||
var outputHTML: string = "";
|
var outputHTML: string = "";
|
||||||
|
|
Loading…
Reference in a new issue