1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-28 15:08:46 +00:00

Add editor type mappings to control panel

This commit is contained in:
Jermolene 2014-06-18 13:52:22 +01:00
parent e6b783154f
commit 0bdc5b5c70
2 changed files with 34 additions and 0 deletions

View File

@ -1,6 +1,10 @@
title: $:/language/ControlPanel/
Advanced/Caption: Advanced
Advanced/EditorTypes/Caption: Editor Types
Advanced/EditorTypes/Editor/Caption: Editor
Advanced/EditorTypes/Hint: These tiddlers determine which editor is used to edit specific tiddler types.
Advanced/EditorTypes/Type/Caption: Type
Advanced/Hint: Internal information about this TiddlyWiki
Advanced/LoadedModules/Caption: Loaded Modules
Advanced/LoadedModules/Hint: These are the currently loaded tiddler modules linked to their source tiddlers. Any italicised modules lack a source tiddler, typically because they were setup during the boot process.

View File

@ -0,0 +1,30 @@
title: $:/core/ui/ControlPanel/Advanced/EditorTypes
tags: $:/tags/ControlPanel/Advanced
caption: {{$:/language/ControlPanel/Advanced/EditorTypes/Caption}}
\define lingo-base() $:/language/ControlPanel/Advanced/EditorTypes/
<<lingo Hint>>
<table>
<tbody>
<tr>
<th><<lingo Type/Caption>></th>
<th><<lingo Editor/Caption>></th>
</tr>
<$list filter="[all[shadows+tiddlers]prefix[$:/config/EditorTypeMappings/]sort[title]]">
<tr>
<td>
<$link>
<$list filter="[all[current]removeprefix[$:/config/EditorTypeMappings/]]">
<$text text={{!!title}}/>
</$list>
</$link>
</td>
<td>
<$view field="text"/>
</td>
</tr>
</$list>
</tbody>
</table>