mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-06 01:02:17 -08:00
14 lines
347 B
Bash
Executable file
14 lines
347 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Split the tiddlers out of a TiddlyWiki file
|
|
|
|
mkdir -p tmp
|
|
mkdir -p tmp/ginsu
|
|
|
|
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
|