mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-26 19:47:20 +00:00
Extend .tid files to allow single line text fields
To make it easier to create tiddlers that don’t include a terminating newline in their text
This commit is contained in:
parent
b77d5f9725
commit
4e07b3335b
@ -1166,8 +1166,6 @@ $tw.modules.define("$:/boot/tiddlerdeserializer/tid","tiddlerdeserializer",{
|
|||||||
}
|
}
|
||||||
if(split.length >= 2) {
|
if(split.length >= 2) {
|
||||||
fields.text = split.slice(1).join("\n\n");
|
fields.text = split.slice(1).join("\n\n");
|
||||||
} else {
|
|
||||||
fields.text = "";
|
|
||||||
}
|
}
|
||||||
return [fields];
|
return [fields];
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
created: 201308251500
|
created: 201308251500
|
||||||
modified: 201308251621
|
modified: 201405131621
|
||||||
tags: deserializers dev
|
tags: deserializers dev
|
||||||
title: TiddlerFiles
|
title: TiddlerFiles
|
||||||
|
|
||||||
@ -21,6 +21,14 @@ modifier: Jeremy
|
|||||||
This is the text of my tiddler.
|
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//
|
//The ContentType `application/x-tiddler` is used internally for these files//
|
||||||
|
|
||||||
!! TiddlyWiki `<DIV>` .tiddler files
|
!! TiddlyWiki `<DIV>` .tiddler files
|
||||||
@ -30,7 +38,7 @@ Modern `*.tiddler` files look like this:
|
|||||||
```
|
```
|
||||||
<div title="AnotherExampleStyleSheet" modifier="blaine" created="201102111106" modified="201102111310" tags="examples" creator="psd">
|
<div title="AnotherExampleStyleSheet" modifier="blaine" created="201102111106" modified="201102111310" tags="examples" creator="psd">
|
||||||
<pre>Note that there is an embedded <pre> tag, and line feeds are not escaped.
|
<pre>Note that there is an embedded <pre> tag, and line feeds are not escaped.
|
||||||
|
|
||||||
And, weirdly, there is no HTML encoding of the body.</pre>
|
And, weirdly, there is no HTML encoding of the body.</pre>
|
||||||
</div>
|
</div>
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user