mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-06 02:30:46 -08:00
* Initial Commit * Fix build * Add original announcement * Add title and subtitle * Fix question ordering bug * Fix nesting bug
12 lines
762 B
Bash
Executable file
12 lines
762 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Load the Great Interview Project JSON data into TiddlyWiki and then save it to the specified folder as .tid files
|
|
rm -rf ./tmp/2010-great-interview-project
|
|
node ./tiddlywiki.js --load ./tmp/2010-great-interview-project.json --savewikifolder ./tmp/2010-great-interview-project
|
|
|
|
# Copy the tiddlers into this wiki
|
|
rm -rf ./editions/tiddlywiki-surveys/tiddlers/2010-great-interview-project
|
|
mkdir ./editions/tiddlywiki-surveys/tiddlers/2010-great-interview-project
|
|
mkdir ./editions/tiddlywiki-surveys/tiddlers/2010-great-interview-project/text
|
|
mkdir ./editions/tiddlywiki-surveys/tiddlers/2010-great-interview-project/images
|
|
cp ./tmp/2010-great-interview-project/tiddlers/2010* ./editions/tiddlywiki-surveys/tiddlers/2010-great-interview-project/text
|