diff --git a/editions/tw5.com/tiddlers/deserializers/TiddlerFiles.tid b/editions/tw5.com/tiddlers/deserializers/TiddlerFiles.tid index 10e252a2f..c530b4509 100644 --- a/editions/tw5.com/tiddlers/deserializers/TiddlerFiles.tid +++ b/editions/tw5.com/tiddlers/deserializers/TiddlerFiles.tid @@ -4,21 +4,21 @@ tags: internals 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. -}}} +``` //The ContentType `application/x-tiddler` is used internally for these files// @@ -26,21 +26,21 @@ This is the text of my tiddler. Modern `*.tiddler` files look like this: -{{{ +```
Note that there is an embedded 
 tag, and line feeds are not escaped.
 	
 And, weirdly, there is no HTML encoding of the body.
-}}} +``` These `*.tiddler` files are therefore not quite the same as the tiddlers found inside a TiddlyWiki HTML file, where the body is HTML encoded in the expected way. Older `*.tiddler` files more closely matched the store format used by TiddlyWiki at the time: -{{{ +```
This is an old-school .tiddler file, without an embedded <pre> tag.\nNote how the body is "HTML encoded" and new lines are escaped to \\n
-}}} +``` //The ContentType `application/x-tiddler-html-div` is used internally for these files//