to remove the [edit] I
1. used the code at
http://tiddlywiki.abego-software.de/archive/IntelliTaggerPlugin/Plugin-IntelliTagger-src.1.0.2.js
- it is easier to read.
2. found [edit] in the code
3. put // in front of the code thus:
// Add an "[edit]" button to the "tags" field that is displayed with
the tiddler in the ViewTemplate.
// Pressing the button allows editing the tags only, with the text
still being displayed in wikified form.
//
// var oldTagsHandler = config.macros.tags.handler;
// config.macros.tags.handler =
function(place,macroName,params,wikifier,paramString,tiddler) {
// oldTagsHandler.apply(this, arguments);
// abego.IntelliTagger.createEditTagsButton(tiddler,
createTiddlyElement(place.lastChild,"li"));
// };
// close the Suggestion Window when the tiddler is no longer edited
// (i.e. the tag edit inputfield is gone.)
//
// (Note: we must poll this condition since onblur on the input
field
// cannot be used since every click into the suggestion window
results
// in a lost focus/blur)
//