mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
1a57d08feb
Also make tests pass
67 lines
1.3 KiB
Plaintext
67 lines
1.3 KiB
Plaintext
title: Pragmas/WhitespaceAfterPragma
|
|
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
|
|
|
|
\procedure this-is-a-definition() Something
|
|
|
|
|
|
|
|
|
|
Now!
|
|
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>
|
|
[
|
|
{
|
|
"type": "set",
|
|
"attributes": {
|
|
"name": {
|
|
"name": "name",
|
|
"type": "string",
|
|
"value": "this-is-a-definition"
|
|
},
|
|
"value": {
|
|
"name": "value",
|
|
"type": "string",
|
|
"value": "Something"
|
|
}
|
|
},
|
|
"children": [
|
|
{
|
|
"type": "text",
|
|
"text": "Now!\n",
|
|
"start": 48,
|
|
"end": 53
|
|
}
|
|
],
|
|
"params": [],
|
|
"orderedAttributes": [
|
|
{
|
|
"name": "name",
|
|
"type": "string",
|
|
"value": "this-is-a-definition"
|
|
},
|
|
{
|
|
"name": "value",
|
|
"type": "string",
|
|
"value": "Something"
|
|
}
|
|
],
|
|
"isProcedureDefinition": true,
|
|
"start": 0,
|
|
"end": 43,
|
|
"rule": "fnprocdef"
|
|
}
|
|
]
|
|
</p> |