Hi Rich,

> Is there an HTML dump inside TiddlyWiki?  A Tiddlers 'export' method? 
> Something that converts all TW5 content pages to individual static HTML pages?

If you want to do a static export of all tiddlers you should follow
Matabeles advice and execute the nodejs command he provided

> This method doesn't stop a 'save as' to get the entire TW5.

You could create a startup module that exports after the story module
and conditionally disables the save handlers…

    $tw.rootWidget.addEventListener("tm-auto-save-wiki", function() {});
    $tw.rootWidget.addEventListener("tm-save-wiki", function() {});

…if the admin tiddler has not been loaded into the river (via #backend
in the url);

This way the save will be disabled completely.

-Felix

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/BLU436-SMTP240B1F2D5A3D6992B4CB317CEEC0%40phx.gbl.
For more options, visit https://groups.google.com/d/optout.

Reply via email to