mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 19:09:57 +00:00
58730b7452
And improve the layout of the examples
80 lines
1.9 KiB
Plaintext
80 lines
1.9 KiB
Plaintext
title: $:/core/macros/toc
|
|
tags: $:/tags/Macro
|
|
|
|
\define toc(tag)
|
|
<ol>
|
|
<$list filter="[tag[$tag$]]">
|
|
<li>
|
|
<$link>
|
|
<$view field="title"/>
|
|
</$link>
|
|
<$macrocall $name="toc" tag=<<currentTiddler>>/>
|
|
</li>
|
|
</$list>
|
|
</ol>
|
|
\end
|
|
|
|
\define toc-expandable-body(tag,show-button-filter)
|
|
<$set name="toc-state" value=<<qualify "$:/state/toc/$tag$-$(currentTiddler)$">>>
|
|
<li>
|
|
<$link>
|
|
<$reveal type="nomatch" state=<<toc-state>> text="open">
|
|
<$button set=<<toc-state>> setTo="open" class="btn-invisible">
|
|
{{$:/core/images/right-arrow}}
|
|
</$button>
|
|
</$reveal>
|
|
<$reveal type="match" state=<<toc-state>> text="open">
|
|
<$button set=<<toc-state>> setTo="close" class="btn-invisible">
|
|
{{$:/core/images/down-arrow}}
|
|
</$button>
|
|
</$reveal>
|
|
<$view field="title"/>
|
|
</$link>
|
|
<$reveal type="match" state=<<toc-state>> text="open">
|
|
<$macrocall $name="toc-expandable" tag=<<currentTiddler>>/>
|
|
</$reveal>
|
|
</li>
|
|
</$set>
|
|
\end
|
|
|
|
\define toc-expandable(tag)
|
|
<ol>
|
|
<$list filter="[tag[$tag$]]">
|
|
<<toc-expandable-body tag:"$tag$">>
|
|
</$list>
|
|
</ol>
|
|
\end
|
|
|
|
\define toc-selective-expandable-body(tag,show-button-filter)
|
|
<$set name="toc-state" value=<<qualify "$:/state/toc/$tag$-$(currentTiddler)$">>>
|
|
<li>
|
|
<$link>
|
|
<$list filter="[all[current]tagging[]limit[1]]">
|
|
<$reveal type="nomatch" state=<<toc-state>> text="open">
|
|
<$button set=<<toc-state>> setTo="open" class="btn-invisible">
|
|
{{$:/core/images/right-arrow}}
|
|
</$button>
|
|
</$reveal>
|
|
<$reveal type="match" state=<<toc-state>> text="open">
|
|
<$button set=<<toc-state>> setTo="close" class="btn-invisible">
|
|
{{$:/core/images/down-arrow}}
|
|
</$button>
|
|
</$reveal>
|
|
</$list>
|
|
<$view field="title"/>
|
|
</$link>
|
|
<$reveal type="match" state=<<toc-state>> text="open">
|
|
<$macrocall $name="toc-selective-expandable" tag=<<currentTiddler>>/>
|
|
</$reveal>
|
|
</li>
|
|
</$set>
|
|
\end
|
|
|
|
\define toc-selective-expandable(tag)
|
|
<ol>
|
|
<$list filter="[tag[$tag$]]">
|
|
<<toc-selective-expandable-body tag:"$tag$">>
|
|
</$list>
|
|
</ol>
|
|
\end
|