mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
f218c946f1
Fixes #3402
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
title: $:/core/ui/EditTemplate/body
|
|
tags: $:/tags/EditTemplate
|
|
|
|
\define lingo-base() $:/language/EditTemplate/Body/
|
|
\define config-visibility-title()
|
|
$:/config/EditorToolbarButtons/Visibility/$(currentTiddler)$
|
|
\end
|
|
<$list filter="[all[current]has[_canonical_uri]]">
|
|
|
|
<div class="tc-message-box">
|
|
|
|
<<lingo External/Hint>>
|
|
|
|
<a href={{!!_canonical_uri}}><$text text={{!!_canonical_uri}}/></a>
|
|
|
|
<$edit-text field="_canonical_uri" class="tc-edit-fields"></$edit-text>
|
|
|
|
</div>
|
|
|
|
</$list>
|
|
|
|
<$list filter="[all[current]!has[_canonical_uri]]">
|
|
|
|
<$reveal state="$:/state/showeditpreview" type="match" text="yes">
|
|
|
|
<div class="tc-tiddler-preview">
|
|
|
|
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
|
|
|
|
<div class="tc-tiddler-preview-preview">
|
|
|
|
<$transclude tiddler={{$:/state/editpreviewtype}} mode="inline">
|
|
|
|
<$transclude tiddler="$:/core/ui/EditTemplate/body/preview/output" mode="inline"/>
|
|
|
|
</$transclude>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</$reveal>
|
|
|
|
<$reveal state="$:/state/showeditpreview" type="nomatch" text="yes">
|
|
|
|
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
|
|
|
|
</$reveal>
|
|
|
|
</$list>
|