mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
a3e5ace458
This is intended to revert some of the behaviour introduced in #7835, see the discussion here: https://github.com/Jermolene/TiddlyWiki5/pull/7888#issuecomment-1856184592
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> |