created: 201308251500 modified: 201405131621 tags: deserializers dev title: TiddlerFiles Tiddlers can be stored in text files in several different formats. Files containing single tiddlers can also have an auxiliary `.meta` file formatted as a sequence of name:value pairs: ``` title: TheTitle modifier: someone ``` !! ~TiddlyWeb-style .tid files These files consist of a sequence of lines containing name:value pairs, a blank line and then the text of the tiddler. For example: ``` title: MyTiddler modifier: Jeremy This is the text of my tiddler. ``` Note that many text editors require that files include a terminating newline. If you want to avoid including the terminating newline in the text of the tiddler you can use this alternative syntax: ``` title: MyTiddler modifier: Jeremy text: This is the text of my tiddler. ``` //The ContentType `application/x-tiddler` is used internally for these files// !! TiddlyWiki `
Note that there is an embeddedtag, and line feeds are not escaped. And, weirdly, there is no HTML encoding of the body.