mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-16 23:04:50 +00:00
f90eb386ae
* Add support for \dir pragma
* Add "dir" attribute to reveal, edit, edit-text and edit-codemirror widgets
* Add $:/config/DefaultTextDirection hidden setting
* Revert accidentally commited test data
This reverts some of commit b83c1d160f
.
* Remove Codemirror plugin from Prerelease
Makes it easier to test things
* Fix framed text editor directionality in Firefox
* Add direction attribute for edit body template
* Missed closing brace
* Add docs for \dir pragma
* Templates should set text direction from a variable, not a transclusion
* Updates to framed.js in the light of PRs that have been merged since this
* Restore whitespace trim
* Docs dates
* Fix typo
* Clarify docs
40 lines
865 B
Plaintext
40 lines
865 B
Plaintext
title: $:/core/ui/EditTemplate/shadow
|
|
tags: $:/tags/EditTemplate
|
|
|
|
\define lingo-base() $:/language/EditTemplate/Shadow/
|
|
\define pluginLinkBody()
|
|
\whitespace trim
|
|
<$link to="""$(pluginTitle)$""">
|
|
<$text text="""$(pluginTitle)$"""/>
|
|
</$link>
|
|
\end
|
|
\whitespace trim
|
|
<$list filter="[all[current]get[draft.of]is[shadow]!is[tiddler]]">
|
|
|
|
<$list filter="[all[current]shadowsource[]]" variable="pluginTitle">
|
|
|
|
<$set name="pluginLink" value=<<pluginLinkBody>>>
|
|
<div class="tc-message-box" dir=<<tv-text-direction>>>
|
|
|
|
<<lingo Warning>>
|
|
|
|
</div>
|
|
</$set>
|
|
</$list>
|
|
|
|
</$list>
|
|
|
|
<$list filter="[all[current]get[draft.of]is[shadow]is[tiddler]]">
|
|
|
|
<$list filter="[all[current]shadowsource[]]" variable="pluginTitle">
|
|
|
|
<$set name="pluginLink" value=<<pluginLinkBody>>>
|
|
<div class="tc-message-box" dir=<<tv-text-direction>>>
|
|
|
|
<<lingo OverriddenWarning>>
|
|
|
|
</div>
|
|
</$set>
|
|
</$list>
|
|
|
|
</$list> |