From c4da71e2fdda1b9ad4ba5624bd811cb24e406a75 Mon Sep 17 00:00:00 2001 From: "Florent V." Date: Thu, 12 Mar 2015 13:46:42 +0100 Subject: [PATCH] Adding the 'language' type to the table of plugins options --- editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid b/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid index 134861262..39181b476 100644 --- a/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid +++ b/editions/tw5.com/tiddlers/mechanisms/PluginMechanism.tid @@ -8,7 +8,7 @@ type: text/vnd.tiddlywiki Tiddlers within plugins behave something like shadow tiddlers in classic TiddlyWiki: they can be freely overwritten by creating a tiddler with the same title, but deleting that tiddler restores the underlying tiddler value from the plugin. -Plugins have a `plugin-type` field that may be: +Plugins have a `plugin-type` field that may be (see the table below): * `plugin` //(default)// - a plain plugin * `theme` - a theme plugin (see ThemeMechanism) @@ -31,7 +31,7 @@ Plugins are stored as tiddlers with the following fields: |version |Version string (must conform to SemanticVersioning convention) | |source |Source URL of plugin | |type |Must be ''application/json'' | -|plugin-type |Can be ''plugin'' (default) or ''theme'' | +|plugin-type |Can be ''plugin'' (default), ''language'' or ''theme'' | |text |JSON encoding of the list of tiddlers comprising the plugin | |list |Names of exposed plugin information tiddlers (see below) | |name |Name of the theme (only for themes) |