1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 10:13:16 +00:00

Parsers now take the type parameter

This commit is contained in:
Jeremy Ruston 2012-01-24 18:11:09 +00:00
parent 889bdbc82a
commit 3268c46458

View File

@ -62,7 +62,7 @@ var WikiTextParser = function(options) {
};
WikiTextParser.prototype.parse = function(text) {
WikiTextParser.prototype.parse = function(type,text) {
this.source = text;
this.nextMatch = 0;
this.children = [];