mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-04 00:56:17 +00:00
e9557b578e
This change is likely to break most existing scripts that call TiddlyWiki. TL;DR - output paths are now relative to the editions/output folder, rather than to the current folder See [[Notes for upgrading to 5.0.11-beta]] for details.
13 lines
322 B
Bash
Executable File
13 lines
322 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Split the tiddlers out of a TiddlyWiki file
|
|
|
|
node ./tiddlywiki.js \
|
|
./editions/empty \
|
|
--verbose \
|
|
--load $1 \
|
|
--output tmp \
|
|
--rendertiddlers [!is[system]] $:/core/templates/tid-tiddler ginsu text/plain .tid \
|
|
--rendertiddler $:/core/templates/split-recipe ginsu/split.recipe text/plain \
|
|
|| exit 1
|