mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-09-17 07:11:22 +00:00
Basic plugin support for browser and server
Currently only supports plugins packed as a single JSON tiddler
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
title: TemporaryTestPlugin
|
||||
type: application/x-tiddlywiki-plugin
|
||||
type: application/json
|
||||
plugin: yes
|
||||
|
||||
{
|
||||
"tiddlers": [
|
||||
{"title": "Test1", "text": "Some text"},
|
||||
{"title": "Test2", "type": "Some more text"}
|
||||
{"title": "Test2", "text": "Some more text"},
|
||||
{"title": "Test3", "text": "console.log(require('Test4').string);", "type": "application/javascript", "module-type": "custom"},
|
||||
{"title": "Test4", "text": "exports.string = 'Plugin I am in You!';", "type": "application/javascript", "module-type": "custom"}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user