Hello TiddlyWiki community!
I know bugs belong on GitHub, but I thought this behavior I found merited some discussion before escalating to true bug status.
To more easily see how my tiddlers tie together, I have a view template tiddler that lists backlinks to the current tiddler under the body. I also have a little macro I wrote
that I use to comment on ideas on my wiki, which looks like this:
\define feedback(text:"")
> $text$
\end
Here's an example from my wiki of how I use that macro:
"Backlinks" for commits (eg. in the case of a revert, or "Commit ABC123 did X, which was wrong because of Y) would be helpful
<<feedback "One potential issue with ↑ is [[rebasing|Can I get git-rebase to rewrite commits in message bodies?]]">>
I noticed that my "Can I get git-rebase to rewrite commits in message bodies?" tiddler didn't have the above tiddler listed among its backlinks - it turns out that backlinks work by building a parse tree for each tiddler and scanning them for link nodes, which my feedback macro doesn't do.
My question is: is this a bug? If not, what would be the best workaround, short of throwing redundant links into my tiddlers?
Thanks,
Rob