mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-12 10:20:26 +00:00
15 lines
343 B
Bash
Executable File
15 lines
343 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 \
|
|
--savetiddler $:/core/templates/split-recipe tmp/ginsu/split.recipe text/plain \
|
|
--savetiddlers [!is[system]] $:/core/templates/tid-tiddler tmp/ginsu text/plain .tid \
|
|
|| exit 1
|