Hi, so after playing around with filter operators and trying to find a way over a data tiddler I wrote a javascript macro I attatched below. The only caveat with this is that you have to close and reopen the tiddler calling the macro due to how javascript macros are called. Maybe someone has an idea for how to reload a single tiddler.
For now the macro - called simply with <<missing-tiddlers>> - renders as a list of all missing tiddlers sorted by how often they are referenced: [image: missingTiddlersList.png] It can be changed to render as a table by changing this line of code in the macro: return renderList(tiddlerData); To this: return renderTable(tiddlerData); Which then looks like this: [image: missingTiddlersTable.png] Please be aware that after importing the macro/changing it you have to reload your wiki for it to take effect. Also as an aside unlike Tony's solution this uses the backlink filter operator so it only counts hard links and excludes system tiddlers completely. A little more about what hard and soft links are here <https://tiddlywiki.com/#Hard%20and%20Soft%20Links>. The reason I did this is mostly to ensure that these are actual references and not just the tiddler title being in the text even if it isn't meant as an actual reference. Should you want to use Tony's solution with search instead of backlinks it is easy change the filter either by yourself or I can update the macro. Regards, Felicia On Thursday, 23 July 2020 23:05:56 UTC+2, Beckstrom wrote: > > Is there a way to generate a list of missing tiddlers sorted by the number > of times they have been referenced? > > Right now I have a hundred or so "missing tiddlers," and I'd guess most of > them are only referenced from other tiddlers once or twice - but there are > probably a handful that are referenced many times. I like to periodically > clean up and add things to my wiki, and knowing which tiddlers are most > needed would be cool. > > thanks in advance! > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/8b851dbf-cc8e-4953-8135-e6bc5afbdeeao%40googlegroups.com.

