1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-10 11:59:58 +00:00

Refactored formatters out of global config object

This commit is contained in:
Jeremy Ruston 2011-12-03 16:32:29 +00:00
parent e1f26eb07b
commit f33880f506

View File

@ -7,14 +7,12 @@ var Tiddler = require("./Tiddler.js").Tiddler,
util = require("util");
function Formatter(formatters)
function Formatter()
{
var n;
this.formatters = [];
var pattern = [];
for(n=0; n<formatters.length; n++) {
pattern.push("(" + formatters[n].match + ")");
this.formatters.push(formatters[n]);
this.formatters = Formatter.formatters;
for(var n=0; n<this.formatters.length; n++) {
pattern.push("(" + this.formatters[n].match + ")");
}
this.formatterRegExp = new RegExp(pattern.join("|"),"mg");
}
@ -88,7 +86,7 @@ Formatter.isExternalLink = function(link) {
return false;
};
config.formatters = [
Formatter.formatters = [
{
name: "table",
match: "^\\|(?:[^\\n]*)\\|(?:[fhck]?)$",