mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
6e9cd59437
Fixes #807
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
|