1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-04 19:23:29 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/dev/Building TiddlyWikiClassic.tid

26 lines
1.0 KiB
Plaintext
Raw Normal View History

2013-12-12 09:48:08 +00:00
created: 20131129094452285
2013-12-13 10:16:37 +00:00
modified: 20131213100714351
2013-12-12 09:48:08 +00:00
tags: howto
title: Building TiddlyWikiClassic
type: text/vnd.tiddlywiki
2013-12-13 10:16:37 +00:00
TiddlyWiki5 can be used to build older 2.x.x versions of TiddlyWikiClassic from their constituent components. Doing so involves these features:
2013-12-12 09:48:08 +00:00
* 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 <path_to_recipe_file> \
--rendertiddler $:/core/templates/tiddlywiki2.template.html <path_to_write_index_file> text/plain \
|| exit 1
```