mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-26 01:50:28 +00:00
33 lines
908 B
JavaScript
33 lines
908 B
JavaScript
|
/*\
|
||
|
title: $:/core/modules/parsers/wikiparser/wikivocabulary.js
|
||
|
type: application/javascript
|
||
|
module-type: global
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
var WikiVocabulary = function(options) {
|
||
|
this.wiki = options.wiki;
|
||
|
// Hashmaps of the various parse rule classes
|
||
|
this.pragmaRuleClasses = $tw.modules.applyMethods("wikipragmarule");
|
||
|
this.blockRuleClasses = $tw.modules.applyMethods("wikiblockrule");
|
||
|
this.runRuleClasses = $tw.modules.applyMethods("wikirunrule");
|
||
|
// Hashmap of the various renderer classes
|
||
|
this.rendererClasses = $tw.modules.applyMethods("wikirenderer");
|
||
|
// Hashmap of the available widgets
|
||
|
this.widgetClasses = $tw.modules.applyMethods("widget");
|
||
|
};
|
||
|
|
||
|
WikiVocabulary.prototype.parseText = function(type,text) {
|
||
|
return new $tw.WikiParser(this,type,text,{wiki: this.wiki});
|
||
|
};
|
||
|
|
||
|
exports.WikiVocabulary = WikiVocabulary;
|
||
|
|
||
|
})();
|
||
|
|