created: 20131129094452285 modified: 20140912141658212 tags: [[TiddlyWiki on Node.js]] title: Building TiddlyWikiClassic type: text/vnd.tiddlywiki TiddlyWiki5 can be used to build older 2.x.x versions of TiddlyWikiClassic from their constituent components. Doing so involves these features: * The `tiddlywiki/classictools` plugin, containing a deserializer module which allows tiddlers to be loaded from TiddlyWiki 2.x.x `.recipe` files * The `stripcomments` format for the ViewWidget, which strips single line JavaScript comments starting `//#` * The `stripTitlePrefix='yes'` attribute of the FieldsWidget, which removes prefixes wrapped in curly braces from the `title` attribute ** For example, `{tiddler}HelloThere` would be transformed to `HelloThere` ! Usage TiddlyWikiClassic is built from the command line by running [[TiddlyWiki on Node.js]]. A typical usage would be: ``` node ../../tiddlywiki.js \ --verbose \ --load \ --rendertiddler $:/core/templates/tiddlywiki2.template.html text/plain \ || exit 1 ```