Hi @etardiff, I got around to making a real plugin, see https://talk.tiddlywiki.org/t/plugin-singletiddlerview/7071
This only works with the 5.3.0-prerelease, because I’m using some clever parameterized transclusion code by btheado.
I hope to have made it agnostic to the whole destroy() discussion, by calling the new function if it exists and the old one if it doesn’t:
if(typeof widget.destroy === 'function') {
widget.destroy();
} else {
widget.removeChildDomNodes();
}
I’ve subscribed to the relevant PR so that I don’t get surprised by breaking changes again.
I’d love if you could give it a whirl and let me know if everything works smoothly.
Yaisog