In tiddlywiki.info
I see commands like this:
"static": [
"--render",
"$:/core/templates/static.template.html",
"static.html",
"text/plain",
"--render",
"$:/core/templates/alltiddlers.template.html",
"alltiddlers.html",
"text/plain",
"--render",
"[!is[system]]",
"[encodeuricomponent[]addprefix[static/]addsuffix[.html]]",
"text/plain",
"$:/core/templates/static.tiddler.html",
"--render",
"$:/core/templates/static.template.css",
"static/static.css",
"text/plain"
]
Does it mean that, a command starts with command name like --render
and followed by arguments list separated by comma ,
and then a new command will start if a command name is appeared in the list like --render
or --output
?
When one calls TiddlyWiki from shell then there is no need for the separator ,
e.g
tiddlywiki --load my-standalone-wiki.html --output 'where/youwant --render '.' tiddlers.json text/plain '$:/core/templates/exporters/JsonFile' 'exportFilter' '[!is[system]]''
Is this correct?