[tw5] Re: Generating a stand-alone version from Node

2020-05-11 Thread Scott Sauyet
Yes, that was it. I misread it as needing to do tiddlywiki --input path/to/folder tiddlywiki ./Wiki --rendertiddler $:core/save/all index.html text/plain in two separate commands. When I tried to combine them, I put the --output command at the end. Putting it first fixes it. Thank

[tw5] Re: Generating a stand-alone version from Node

2020-05-11 Thread Soren Bjornstad
The output option needs to come before any other commands you use -- TiddlyWiki executes them in the order you list them, so if you put it after the export command, it only resets the output location after the file has already been rendered. Not sure if that's your problem, but that fixed it

[tw5] Re: Generating a stand-alone version from Node

2020-05-11 Thread Scott Sauyet
>> Scott Sauyet wrote: > Mark S. wrote: >>> Is there a straightforward way in Node to generate a stand-alone version of the all-in-one file? >> This might be something like what you want: >> https://tiddlywiki.com/#How%20to%20build%20a%20TiddlyWiki5%20from%20individual%20tiddlers >> What isn't

[tw5] Re: Generating a stand-alone version from Node

2020-05-11 Thread Scott Sauyet
> Scott Sauyet wrote: Mark S. wrote: >> Is there a straightforward way in Node to generate a stand-alone version of the all-in-one file? > This might be something like what you want: > https://tiddlywiki.com/#How%20to%20build%20a%20TiddlyWiki5%20from%20individual%20tiddlers > What isn't

[tw5] Re: Generating a stand-alone version from Node

2020-05-10 Thread 'Mark S.' via TiddlyWiki
This might be something like what you want: https://tiddlywiki.com/#How%20to%20build%20a%20TiddlyWiki5%20from%20individual%20tiddlers What isn't mentioned in those docs is that the output goes into the output directory. On Sunday, May 10, 2020 at 6:14:38 PM UTC-7, Scott Sauyet wrote: > > I'm