1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 12:34:22 +00:00
TiddlyWiki5/core/plugins/TemporaryTestPlugin.tid

18 lines
616 B
Plaintext

title: TemporaryTestPlugin
type: application/json
plugin: yes
{
"title": "$:/plugins/tiddlywiki/test",
"description": "An exemplary plugin for demonstration purposes",
"author": "JeremyRuston",
"version": "0.0.0-alpha0",
"coreVersion": ">=5.0.0",
"tiddlers": {
"Test1": {"text": "Some text"},
"Test2": {"text": "Some more text"},
"Test3": {"text": "console.log(require('$:/plugins/tiddlywiki/test/Test4').string);", "type": "application/javascript", "module-type": "custom"},
"Test4": {"text": "exports.string = 'Plugin I am in You!';", "type": "application/javascript", "module-type": "custom"}
}
}