mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Add editor type mappings to control panel
This commit is contained in:
parent
e6b783154f
commit
0bdc5b5c70
@ -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.
|
||||
|
30
core/ui/ControlPanel/Advanced/EditorTypes.tid
Normal file
30
core/ui/ControlPanel/Advanced/EditorTypes.tid
Normal 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>
|
Loading…
Reference in New Issue
Block a user