Ordered list question

Is there any way to wiggle this so that the numbers of the ordered list act as links to their respective tiddlers? That would give me editing access to the tiddlers but would also be less intrusive than putting something in the tiddlers themselves, or adding a link on a separate line.

<ol><$list filter="[tag[January]sort[created]]"><li><$transclude field="text" mode="block"/></li></$list></ol>

I would change it to an unordered list. Use CSS to suppress the marker. Insert the number using the counter variable, and wrap that with the link.

2 Likes

Thanks! That definitely sounds like the better way to go.