> would it be possible to change the footnotes plugin to give letters
> instead of numbers?
It would be possible, but you'd have to write some code for that. In
particular, you'd create a new plugin that overrides the "footnotes"
formatter's handler function.
A brief look at Saq's code suggests you'd start with the following line:
var pos = tiddler.notes.indexOf(lookaheadMatch[1]) + 1;
Below that, you could do the following:
pos = String.fromCharCode(pos);
However, what happens if you have more than 26 footnotes (unlikely, but
possible)?
-- 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
-~----------~----~----~----~------~----~------~--~---