mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-18 07:44:51 +00:00
16 lines
380 B
Batchfile
16 lines
380 B
Batchfile
|
@echo
|
||
|
|
||
|
rem Split the tiddlers out of a TiddlyWiki file
|
||
|
|
||
|
setlocal enableextensions
|
||
|
mkdir tmp\ginsu
|
||
|
setlocal disableextensions
|
||
|
|
||
|
node .\tiddlywiki.js ^
|
||
|
.\editions\empty ^
|
||
|
--verbose ^
|
||
|
--load %1 ^
|
||
|
--rendertiddler $:/core/templates/split-recipe tmp\ginsu\split.recipe text/plain ^
|
||
|
--rendertiddlers [!is[system]] $:/core/templates/tid-tiddler tmp\ginsu text/plain .tid ^
|
||
|
|| exit 1
|