mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
c4a85e3b82
Synced bld.cmd to bld.sh, added some mostly cosmetic changes in the command scripts to make them even more 1-to-1 with the .sh scripts.
16 lines
384 B
Batchfile
16 lines
384 B
Batchfile
@echo off
|
|
|
|
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
|