You can always think of the <<something "with" "some" "args">>
syntax as a shortcut for
<$transclude $variable="something" param1="with" param2="some" param3="args" />
The shortcut is much nicer for many uses, but itâs less flexible, as you can only pass plain strings as arguments here. We need to pass <<currentTiddler>>
so weâll have to use the longer format.
This is how I would combine them:
<% if [<currentTiddler>tagging[]] %>
<$let caption-then-title ="[{!!caption}] [{!!title}] +[join[]]">
<div class="tc-table-of-contents">
<hr/>
<h2>Related Info</h2>
<$transclude $variable="toc-selective-expandable" tag=<<currentTiddler>> sort="sortsub:string<caption-then-title>"/>
</div>
</$let>
<% endif %>
Obviously you would need to choose which TOC implementation you actually want. I usually choose toc-selective-expandable
.
Here, with tiddlers like this:
title |
caption |
sort key |
ABC |
|
âABCâ |
Tiddler 1 |
Foo |
âFooTiddler 1â |
Tiddler 2 |
Bar |
âBarTiddler 2â |
Tiddler 3 |
Baz |
âBazTiddler 3â |
Tiddler 4 |
|
âTiddler 4â |
Tiddler 5 |
Qux |
âQuxTiddler 5â |
We would get this sort order:
- ABC
- Bar
- Baz
- Foo
- Qux
- Tiddler 4
I also made a mistake in the original (which I will edit right now) In the key, I joined fields to make the key with an actual character. (I used ~
.) For technical reasons, that might cause problems when the caption is empty. So itâs updated to join on an empty string.
You can see this in action by downloading this and dragging the resulting file on any wiki:
CaptionThenTitle.json (1.6 KB)
If you open MyTag
you will see the results above.