Applied to a long list already!
http://stephenteacher.tiddlyspot.com/#Equations
Is it possible to use it with @@columns or does it have to be <div..?
<div class="columns">
<div class="tc-table-of-contents">
<<toc-expandable "Contents">>
</div>
</div>Excellent!Applied to a long list already!
Is it possible to use it with @@columns or does it have to be <div..?
Nested lists you say! Well most should already be tagged with subject...
So how would I do that then?
If any of its any good for your physics class feel free ;)
So how would I do that then?
If any of its any good for your physics class feel free ;)
\define column-item(filter, subfilter)
<$list filter="$filter$" variable=subject>
<span class="column-item">
<div class="column-item-heading"><<subject>></div>
<$list filter="""$subfilter$ +[tag<subject>]""">
<div class="column-item-item">
{{!!title}}
</div>
</$list>
</span>
</$list>
\end@@.columns
<<column-item "[tag[subject]]" "[tag[Equation]]">>
@@@@.columns
<$macrocall $name=column-item filter=<<currentTiddler>> subfilter="[tag[Equation]]" />
@@
A couple of problems due to my tagging system in that an equation isn't always tagged with the top level subject, so stress is tagged under 'stress and strain' but not the top level 'Statics'.The linkability seems to have gone too!
\define column-item(filter, subfilter)<$list filter="$filter$" variable=subject><span class="column-item"> <div class="column-item-heading"><<subject>></div> <$list filter="""$subfilter$ +[tag<subject>]"""> <div class="column-item-item"> <$link to=<<currentTiddler>>><$view field="title"/></$link> </div> </$list></span></$list>\end
@@.columns<<column-item "[tag[Table of Contents]]" "[tag[Equation]]">>@@