Replacing the trigger markers is relatively easy - the problem though is
finding convenient characters that aren't already taken.
In general, the code looks like this:
---------------
//{{{
FootnotesPluginTweak = {
replaceFormatters: function() {
for(var i = 0; i < config.formatters.length; i++) {
var obj = config.formatters[i];
if(obj.name == "footnotes") {
obj.match = "```";
obj.lookaheadRegExp = /```((?:.|\n)*?)```/g;
break;
}
}
}
};
FootnotesPluginTweak.replaceFormatters();
//}}}
---------------
Stick this into a tiddler tagged with "systemConfig" (e.g.
[[ConfigTweaks]]) and replace all nine occurrences of "`" with the
marker of your choice (note that for technical reasons, not all
characters will work right away - you might try escaping those with a
leading backslash; e.g. "\$").
HTH.
-- F.