1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-20 14:45:59 +00:00
TiddlyWiki5/core/plugins/TemporaryTestPlugin.tid
Jeremy Ruston 88e7a4fb67 Basic plugin support for browser and server
Currently only supports plugins packed as a single JSON tiddler
2012-08-31 12:34:39 +01:00

13 lines
437 B
Plaintext

title: TemporaryTestPlugin
type: application/json
plugin: yes
{
"tiddlers": [
{"title": "Test1", "text": "Some 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"}
]
}