1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-18 03:19:55 +00:00

Exclude drafts from table of contents macros

This commit is contained in:
Jermolene 2014-11-04 11:54:35 +00:00
parent 335c470797
commit 5093cdc860

View File

@ -3,7 +3,7 @@ tags: $:/tags/Macro
\define toc-body(rootTag,tag,sort:"")
<ol class="tc-toc">
<$list filter="""[tag[$tag$]$sort$]""">
<$list filter="""[tag[$tag$]!has[draft.of]$sort$]""">
<li>
<$list filter="[is[current]toc-link[no]]" emptyMessage="<$link><$view field='caption'><$view field='title'/></$view></$link>">
<$view field="caption">
@ -75,7 +75,7 @@ tags: $:/tags/Macro
\define toc-expandable(tag,sort:"")
<ol class="tc-toc toc-expandable">
<$list filter="[tag[$tag$]$sort$]">
<$list filter="[tag[$tag$]!has[draft.of]$sort$]">
<$list filter="[is[current]toc-link[no]]" emptyMessage="<<toc-linked-expandable-body tag:'$tag$' sort:'$sort$'>>">
<<toc-unlinked-expandable-body tag:"$tag$" sort:"$sort$">>
</$list>
@ -140,7 +140,7 @@ tags: $:/tags/Macro
\define toc-selective-expandable(tag,sort:"")
<ol class="tc-toc toc-selective-expandable">
<$list filter="[tag[$tag$]$sort$]">
<$list filter="[tag[$tag$]!has[draft.of]$sort$]">
<$list filter="[is[current]toc-link[no]]" variable="ignore" emptyMessage="<<toc-linked-selective-expandable-body tag:'$tag$' sort:'$sort$'>>">
<<toc-unlinked-selective-expandable-body tag:"$tag$" sort:"$sort$">>
</$list>