mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 15:16:18 +00:00
cc0011abd3
There's still the "old_" prefix to get rid of too.
15 lines
347 B
Bash
Executable File
15 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
|