Hi Charlie 1) I got all the json to import just fine, as long as I pull it in via the > Tools | Import | Browse... and select my json file from the filepicker. > Is there a way to automate this from the command line? I installed the > node-js and tiddlywiki server stuff, but it tends to make huge > piles of .tid files in a local directory, which is not what I'm after. I > want something like: > > tiddlywiki ./docs/tiddlypettil --verbose --load ./pettil.json -- > > but to output to a single html file, not to ./docs/tiddlypettil/tiddlers/ > lots of tids >
Try something like this: tiddlywiki ./docs/tiddlypettil --verbose --load ./pettil.json --rendertiddler $:/core/save/all mywiki.html text/plain More details: http://tiddlywiki.com/#:%5B%5BUsing%20TiddlyWiki%20on%20Node.js%5D%5D%20%5B%5BHow%20to%20build%20a%20TiddlyWiki5%20from%20individual%20tiddlers%5D%5D 2) Tiddlywiki gets really annoyed with these Forth words being the tiddler > titie: > > ] ['] [COMPILE] > > Pretty much anything with a right-bracket. How do I name a Tiddler ']' > (sans quotes)? > There are a few areas of TW that struggle with right square brackets in tiddler titles, but with care you may be able to work around the issues. Creating a tiddler with the title `] ['] [COMPILE]` doesn't immediately cause any problems. The problematic operations that I am aware of include: * Inability to link with [[pretty link]] syntax; instead use <$link to="] ['] [COMPILE]">My link text</$link> * Inability to include such tiddler titles as a literal title within a filter expression. Sometimes you can workaround this by using a text reference like this: [parent{!!title}] - this example matches tiddler fields called parent having the value of the title of the current tiddler * Breaking permalink parsing - you can turn off permalinks using control panel Best wishes Jeremy > > > -- > You received this message because you are subscribed to the Google Groups > "TiddlyWiki" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/tiddlywiki. > For more options, visit https://groups.google.com/d/optout. > > -- Jeremy Ruston mailto:[email protected] -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

