mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
32 lines
431 B
Plaintext
32 lines
431 B
Plaintext
|
title: Pragmas/WhitespaceNoPragma
|
||
|
description: parsermode pragma
|
||
|
type: text/vnd.tiddlywiki-multiple
|
||
|
tags: [[$:/tags/wiki-test-spec]]
|
||
|
|
||
|
title: Output
|
||
|
|
||
|
<$wikify name="parsetree" text={{Text}} mode="inline" output="parsetree">
|
||
|
<$text text=<<parsetree>>/>
|
||
|
</$wikify>
|
||
|
+
|
||
|
title: Text
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
Now!
|
||
|
|
||
|
+
|
||
|
title: ExpectedResult
|
||
|
|
||
|
<p>
|
||
|
[
|
||
|
{
|
||
|
"type": "text",
|
||
|
"text": "\n\n\n\nNow!\n",
|
||
|
"start": 0,
|
||
|
"end": 9
|
||
|
}
|
||
|
]
|
||
|
</p>
|