One very specific question and one more general one.
First, I was able to get a quick overview of some tiddlers representing sample files for parts of the system I’m documenting, like this:
<table>
<tr><th>Name</th><th>Description</th><th>Lines</th></tr>
<$list filter="[tag[Sample]]">
<tr>
<td><$link/></td>
<td>{{!!description}}</td>
<td>{{{ [<currentTiddler>get[text]split[
]count[]] }}}</td>
</tr>
</$list>
</table>
But the counts of lines in the third TD end up as links such as the equivalent of [[4]]
and [[217]]
. How do I make them plain text, 4
and 217
?
More generally, I’m still applying a lot of magic thinking to get the result I want. I fiddle with various syntaxes that feel right but almost never are. Eventually I stumble onto something that works, then cut-and-paste wherever I need something similar. This is not efficient or effective. Are there some good simple references for how and when to use the various brackets and in which combinations?
I like GrokTiddlywiki but that’s aimed at tutorial-level learning, not quick references. There are several good cheat-sheets out there. I like the one from tobibeer, but it’s aimed at the overall editing experience. The one from TonyM seems to have a fair bit of interesting information, but is more of a brain dump than a how-to guide.
Are there any cheat sheets not aimed at questions like “How do I underline some text”? but rather at ones like “How do I manipulate and display the data in a field when I’m in plain wikitext mode?”. And I don’t literally mean cheat-sheets, as in single-page/tiddler versions, just something where I can look up such intermediate user questions quickly without too much of a break in my content-creation flow.
Any suggestions?