mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-01 14:46:55 +00:00
Added tracking of dependencies between tiddlers
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user