mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-12 18:30:27 +00:00
4cac7b6784
Now includes a special document view column on the left. Headings can be expanded/collapsed, and tiddler titles can be inspected and renamed via the toolbar. Clicking on an entry opens the associated tiddler. The default tiddler view template includes a special section for tiddlers that are part of a document
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
title: $:/plugins/tiddlywiki/text-slicer/templates/template-tiddler
|
|
|
|
<$list filter="[<tv-show-toolbar>prefix[yes]]" variable="hasToolbar">
|
|
{{||$:/plugins/tiddlywiki/text-slicer/templates/tiddler-toolbar}}
|
|
</$list>
|
|
|
|
<$reveal type="match" state="!!toc-type" text="document">
|
|
<$transclude tiddler="$:/plugins/tiddlywiki/text-slicer/templates/template-document" mode="block"/>
|
|
</$reveal>
|
|
|
|
<$reveal type="match" state="!!toc-type" text="heading">
|
|
<$transclude tiddler="$:/plugins/tiddlywiki/text-slicer/templates/template-heading" mode="block"/>
|
|
</$reveal>
|
|
|
|
<$reveal type="match" state="!!toc-type" text="paragraph">
|
|
<$transclude tiddler="$:/plugins/tiddlywiki/text-slicer/templates/template-paragraph" mode="block"/>
|
|
</$reveal>
|
|
|
|
<$reveal type="match" state="!!toc-type" text="list">
|
|
<$transclude tiddler="$:/plugins/tiddlywiki/text-slicer/templates/template-list" mode="block"/>
|
|
</$reveal>
|
|
|
|
<$reveal type="match" state="!!toc-type" text="item">
|
|
<$transclude tiddler="$:/plugins/tiddlywiki/text-slicer/templates/template-item" mode="block"/>
|
|
</$reveal>
|