Thanks Eric,
In my case, I entered the folder where the
tiddlywiki.info exists and got the following output with this command:
$ tiddlywiki --build index
syncer-server-filesystem: Dispatching 'save' task: $:/StoryList
After this command, I didn't find any HTML file that was generated. The original content of my
tiddlywiki.info file was:
{
"description": "Basic client-server edition",
"plugins": [
"tiddlywiki/tiddlyweb",
"tiddlywiki/filesystem",
"tiddlywiki/highlight"
],
"themes": [
"tiddlywiki/vanilla",
"tiddlywiki/snowwhite"
],
"build": {
"index": [
"--rendertiddler",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"index.html",
"text/plain"
],
"externalimages": [
"--savetiddlers",
"[is[image]]",
"images",
"--setfield",
"[is[image]]",
"_canonical_uri",
"$:/core/templates/canonical-uri-external-image",
"text/plain",
"--setfield",
"[is[image]]",
"text",
"",
"text/plain",
"--rendertiddler",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"externalimages.html",
"text/plain"
],
"static": [
"--rendertiddler",
"$:/core/templates/static.template.html",
"static.html",
"text/plain",
"--rendertiddler",
"$:/core/templates/alltiddlers.template.html",
"alltiddlers.html",
"text/plain",
"--rendertiddlers",
"[!is[system]]",
"$:/core/templates/static.tiddler.html",
"static",
"text/plain",
"--rendertiddler",
"$:/core/templates/static.template.css",
"static/static.css",
"text/plain"
]
}
}
I also tried making a backup of this
tiddlywiki.info file and changing the original to be like the one of your example with just the
index object inside
build... But the result of the command
tiddlywiki --build index seems to be the same. Am I missing some step?