mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
623a3ec8f8
What we have at the moment isn't really the same as TiddlyWiki classic's shadow tiddlers, it's a much simpler system for excluding tiddlers. We'll use the term "shadow" instead to refer to the way that tiddlers in plugins behave, which is exactly like TiddlyWiki classic's shadow tiddlers.
13 lines
464 B
Plaintext
13 lines
464 B
Plaintext
title: $:/core/templates/store.area.template.html
|
|
|
|
<$reveal type="nomatch" state="$:/isEncrypted" text="yes">
|
|
`<div id="storeArea" style="display:none;">`
|
|
{{{ [!is[system]] ||$:/core/templates/html-div-tiddler}}}
|
|
`</div>`
|
|
</$reveal>
|
|
<$reveal type="match" state="$:/isEncrypted" text="yes">
|
|
`<!------------- Encrypted tiddlers --------->`
|
|
`<pre id="encryptedStoreArea" type="text/plain" style="display:none;">`
|
|
<$encrypt filter="[!is[system]]"/>
|
|
`</pre>`
|
|
</$reveal> |