이 문서는 https://tiddlywiki.com/languages/ko-KR/에서 티들리위키의 정적 HTML 표현의 일부입니다

Installing official plugins on Node.js

2022년 6월 17일 오후 1:23

Follow these instructions when using TiddlyWiki with a client-server Node.js configuration:

  1. Identify the plugins you want to install using the Plugins tab of (don't install the plugins from here, though)
    • Plugins are identified by their type (ie language, theme or plugin) and their publisher and title. For example, the plugin $:/plugins/tiddlywiki/internals is referred to as tiddlywiki/internals
  2. Quit the server if it is running
  3. Edit the tiddlywiki.info file (it is in JSON format) and locate the plugins, themes or languages section (see below)
  4. Add entries corresponding to the plugins you wish to add
    • Take care to retain commas to separate items
    • Do not terminate the last item in a list with a comma
  5. Restart the server
{
	"plugins": [
		"tiddlywiki/codemirror"
	],
	"themes": [
		"tiddlywiki/vanilla",
		"tiddlywiki/snowwhite"
	],
    "languages": [
        "es-ES",
        "fr-FR",
        "en-EN"
    ]
}

Note
An overview of working with plugins can be found at Plugins.
Also see: Installing custom plugins on Node.js.