> Does anyone know of an alternative footnote generator or even whether
> I can somehow change the character used to signify the footnote entry

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.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to