mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
7a6d7e2a15
* Refactored control panel “Plugins” tab to make the elements more reusable * Refactored the display of plugin tiddlers to use the same format as the control panel (as suggested, I think by @danielo515), adding the shadow tiddler listing as an overridable extension tab * Added a new tab in the “More” sidebar providing quick access to all installed plugins
21 lines
704 B
Plaintext
21 lines
704 B
Plaintext
title: $:/core/ui/PluginInfo
|
|
|
|
\define localised-info-tiddler-title()
|
|
$(currentTiddler)$/$(languageTitle)$/$(currentTab)$
|
|
\end
|
|
\define info-tiddler-title()
|
|
$(currentTiddler)$/$(currentTab)$
|
|
\end
|
|
\define default-tiddler-title()
|
|
$:/core/ui/PluginInfo/Default/$(currentTab)$
|
|
\end
|
|
<$transclude tiddler=<<localised-info-tiddler-title>> mode="block">
|
|
<$transclude tiddler=<<currentTiddler>> subtiddler=<<localised-info-tiddler-title>> mode="block">
|
|
<$transclude tiddler=<<currentTiddler>> subtiddler=<<info-tiddler-title>> mode="block">
|
|
<$transclude tiddler=<<default-tiddler-title>> mode="block">
|
|
{{$:/language/ControlPanel/Plugin/NoInfoFound/Hint}}
|
|
</$transclude>
|
|
</$transclude>
|
|
</$transclude>
|
|
</$transclude>
|