Added tracking of dependencies between tiddlers

This commit is contained in:
Jeremy Ruston
2012-01-06 19:41:42 +00:00
parent 3d507c3bab
commit 82a83bd714
3 changed files with 20 additions and 7 deletions

View File

@@ -44,9 +44,10 @@ WikiTextParser.prototype.parse = function(text) {
this.source = text;
this.nextMatch = 0;
this.children = [];
this.dependencies = [];
this.output = null;
this.subWikify(this.children);
return new WikiTextParseTree(this.children,this.store);
return new WikiTextParseTree(this.children,this.dependencies,this.store);
};
WikiTextParser.prototype.outputText = function(place,startPos,endPos) {