I do this so often that I created several snippets that I insert regularly 
(using the snippet editor button), each listing titles in a different way.  
I use all of these different methods depending on the kind of content and 
how much of it there is. These might give you other ideas:


*Titles in bullets (sorted):*

<<list-links "[tag{!!title}sort[]]">>





*Tiddlers in tabs:*
<$macrocall $name="tabs"
    tabsList="[tag{!!title}]"
    class="tc-vertical"
  />





*Table of contents expandable*
<$set name="this" value={{!!title}}>
<<toc-selective-expandable "$(this)$">>
</$set>





*TOC internal navigation*Note that for these, I customize the state tiddler 
to a unique name for each TOC so currently selected tiddler doesn't show up 
in other TOCs. I also made it a "popup" state because I didn't want it to 
save state for every single TOC between loads. But others may prefer to 
keep the state of the selected title, in which case you could save it it 
$:/state/toc/

<$set name="this" value={{!!title}}>
  <$macrocall $name="toc-tabbed-internal-nav"
  tag="$(this)$"
  selectedTiddler="$:/state/popup/toc/$(this)$"
  />
</$set>



*TOC external navigation:*

<$set name="this" value={{!!title}}>
  <$macrocall $name="toc-tabbed-external-nav"
  tag="$(this)$"
  selectedTiddler="$:/state/popup/toc/$(this)$"
  />
</$set>




-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/17fc9d47-18c9-4a48-aff0-daa2897a2a79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to