2013-07-03 15:01:01 +00:00
/ * \
title : test - wikitext - parser . js
type : application / javascript
tags : [ [ $ : / t a g s / t e s t - s p e c ] ]
Tests for wikitext parser
\ * /
( function ( ) {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict" ;
describe ( "WikiText parser tests" , function ( ) {
// Create a wiki
var wiki = new $tw . Wiki ( ) ;
// Define a parsing shortcut
var parse = function ( text ) {
2013-11-08 08:51:14 +00:00
return wiki . parseText ( "text/vnd.tiddlywiki" , text ) . tree ;
2013-07-03 15:01:01 +00:00
} ;
it ( "should parse tags" , function ( ) {
expect ( parse ( "<br>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 4 , children : [ { type : 'element' , tag : 'br' , start : 0 , end : 4 , isBlock : false , attributes : { } , orderedAttributes : [ ] } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "</br>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 5 , children : [ { type : 'text' , text : '</br>' , start : 0 , end : 5 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 5 , children : [ { type : 'element' , tag : 'div' , start : 0 , end : 5 , isBlock : false , attributes : { } , orderedAttributes : [ ] , children : [ ] } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div/>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 6 , children : [ { type : 'element' , tag : 'div' , isSelfClosing : true , isBlock : false , attributes : { } , orderedAttributes : [ ] , start : 0 , end : 6 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div></div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 11 , children : [ { type : 'element' , tag : 'div' , isBlock : false , attributes : { } , orderedAttributes : [ ] , children : [ ] , start : 0 , end : 5 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div>some text</div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 20 , children : [ { type : 'element' , tag : 'div' , start : 0 , end : 20 , isBlock : false , attributes : { } , orderedAttributes : [ ] , children : [ { type : 'text' , text : 'some text' , start : 5 , end : 14 } ] , start : 0 , end : 5 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div attribute>some text</div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 30 , children : [ { type : 'element' , tag : 'div' , isBlock : false , attributes : { attribute : { type : 'string' , value : 'true' , start : 4 , end : 14 , name : 'attribute' } } , orderedAttributes : [ { type : 'string' , value : 'true' , start : 4 , end : 14 , name : 'attribute' } ] , children : [ { type : 'text' , text : 'some text' , start : 15 , end : 24 } ] , start : 0 , end : 15 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div attribute='value'>some text</div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 38 , children : [ { type : 'element' , tag : 'div' , start : 0 , end : 38 , isBlock : false , attributes : { attribute : { type : 'string' , name : 'attribute' , value : 'value' , start : 4 , end : 22 } } , orderedAttributes : [ { type : 'string' , name : 'attribute' , value : 'value' , start : 4 , end : 22 } ] , children : [ { type : 'text' , text : 'some text' , start : 23 , end : 32 } ] , start : 0 , end : 23 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div attribute={{TiddlerTitle}}>some text</div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 47 , children : [ { type : 'element' , tag : 'div' , isBlock : false , attributes : { attribute : { type : 'indirect' , name : 'attribute' , textReference : 'TiddlerTitle' , start : 4 , end : 31 } } , orderedAttributes : [ { type : 'indirect' , name : 'attribute' , textReference : 'TiddlerTitle' , start : 4 , end : 31 } ] , children : [ { type : 'text' , text : 'some text' , start : 32 , end : 41 } ] , start : 0 , end : 32 } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<$reveal state='$:/temp/search' type='nomatch' text=''>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 55 , children : [ { type : 'reveal' , tag : '$reveal' , start : 0 , attributes : { state : { start : 8 , name : 'state' , type : 'string' , value : '$:/temp/search' , end : 31 } , type : { start : 31 , name : 'type' , type : 'string' , value : 'nomatch' , end : 46 } , text : { start : 46 , name : 'text' , type : 'string' , value : '' , end : 54 } } , orderedAttributes : [ { start : 8 , name : 'state' , type : 'string' , value : '$:/temp/search' , end : 31 } , { start : 31 , name : 'type' , type : 'string' , value : 'nomatch' , end : 46 } , { start : 46 , name : 'text' , type : 'string' , value : '' , end : 54 } ] , end : 55 , isBlock : false , children : [ ] } ] } ]
2013-07-03 15:01:01 +00:00
) ;
expect ( parse ( "<div attribute={{TiddlerTitle!!field}}>some text</div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 54 , children : [ { type : 'element' , tag : 'div' , isBlock : false , attributes : { attribute : { type : 'indirect' , name : 'attribute' , textReference : 'TiddlerTitle!!field' , start : 4 , end : 38 } } , orderedAttributes : [ { type : 'indirect' , name : 'attribute' , textReference : 'TiddlerTitle!!field' , start : 4 , end : 38 } ] , children : [ { type : 'text' , text : 'some text' , start : 39 , end : 48 } ] , start : 0 , end : 39 } ] } ]
2013-07-03 15:01:01 +00:00
2013-10-31 12:37:47 +00:00
) ;
expect ( parse ( "<div attribute={{Tiddler Title!!field}}>some text</div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 55 , children : [ { type : 'element' , tag : 'div' , isBlock : false , attributes : { attribute : { type : 'indirect' , name : 'attribute' , textReference : 'Tiddler Title!!field' , start : 4 , end : 39 } } , orderedAttributes : [ { type : 'indirect' , name : 'attribute' , textReference : 'Tiddler Title!!field' , start : 4 , end : 39 } ] , children : [ { type : 'text' , text : 'some text' , start : 40 , end : 49 } ] , start : 0 , end : 40 } ] } ]
2013-10-31 12:37:47 +00:00
2013-07-03 15:01:01 +00:00
) ;
2014-02-20 21:42:31 +00:00
expect ( parse ( "<div attribute={{TiddlerTitle!!field}}>\n\nsome text</div>" ) ) . toEqual (
2013-07-03 15:01:01 +00:00
2021-10-27 10:35:12 +00:00
[ { type : 'element' , start : 0 , attributes : { attribute : { start : 4 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 38 } } , orderedAttributes : [ { start : 4 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 38 } ] , tag : 'div' , end : 39 , isBlock : true , children : [ { type : 'element' , tag : 'p' , start : 41 , end : 50 , children : [ { type : 'text' , text : 'some text' , start : 41 , end : 50 } ] } ] } ]
2013-07-03 15:01:01 +00:00
) ;
2014-02-20 21:42:31 +00:00
expect ( parse ( "<div><div attribute={{TiddlerTitle!!field}}>\n\nsome text</div></div>" ) ) . toEqual (
2013-07-03 15:01:01 +00:00
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 67 , children : [ { type : 'element' , start : 0 , attributes : { } , orderedAttributes : [ ] , tag : 'div' , end : 5 , isBlock : false , children : [ { type : 'element' , start : 5 , attributes : { attribute : { start : 9 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 43 } } , orderedAttributes : [ { start : 9 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 43 } ] , tag : 'div' , end : 44 , isBlock : true , children : [ { type : 'element' , tag : 'p' , start : 46 , end : 55 , children : [ { type : 'text' , text : 'some text' , start : 46 , end : 55 } ] } ] } ] } ] } ]
2013-07-03 15:01:01 +00:00
) ;
2014-02-20 21:42:31 +00:00
expect ( parse ( "<div><div attribute={{TiddlerTitle!!field}}>\n\n!some heading</div></div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 71 , children : [ { type : 'element' , start : 0 , attributes : { } , orderedAttributes : [ ] , tag : 'div' , end : 5 , isBlock : false , children : [ { type : 'element' , start : 5 , attributes : { attribute : { start : 9 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 43 } } , orderedAttributes : [ { start : 9 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 43 } ] , tag : 'div' , end : 44 , isBlock : true , children : [ { type : 'element' , tag : 'h1' , attributes : { class : { type : 'string' , value : '' } } , children : [ { type : 'text' , text : 'some heading</div></div>' , start : 47 , end : 71 } ] } ] } ] } ] } ]
2014-02-20 21:42:31 +00:00
) ;
expect ( parse ( "<div><div attribute={{TiddlerTitle!!field}}>\n!some heading</div></div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 70 , children : [ { type : 'element' , start : 0 , attributes : { } , orderedAttributes : [ ] , tag : 'div' , end : 5 , isBlock : false , children : [ { type : 'element' , start : 5 , attributes : { attribute : { start : 9 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 43 } } , orderedAttributes : [ { start : 9 , name : 'attribute' , type : 'indirect' , textReference : 'TiddlerTitle!!field' , end : 43 } ] , tag : 'div' , end : 44 , isBlock : false , children : [ { type : 'text' , text : '\n!some heading' , start : 44 , end : 58 } ] } ] } ] } ]
2014-02-20 21:42:31 +00:00
) ;
2021-01-29 14:57:30 +00:00
// Regression test for issue (#3306)
expect ( parse ( "<div><span><span>\n\nSome text</span></span></div>" ) ) . toEqual (
2021-10-27 10:35:12 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 48 , children : [ { type : 'element' , start : 0 , attributes : { } , orderedAttributes : [ ] , tag : 'div' , end : 5 , isBlock : false , children : [ { type : 'element' , start : 5 , attributes : { } , orderedAttributes : [ ] , tag : 'span' , end : 11 , isBlock : false , children : [ { type : 'element' , start : 11 , attributes : { } , orderedAttributes : [ ] , tag : 'span' , end : 17 , isBlock : true , children : [ { type : 'element' , tag : 'p' , start : 19 , end : 28 , children : [ { type : 'text' , text : 'Some text' , start : 19 , end : 28 } ] } ] } ] } ] } ] } ]
2021-01-29 14:57:30 +00:00
) ;
2013-07-03 15:01:01 +00:00
} ) ;
it ( "should parse macro definitions" , function ( ) {
expect ( parse ( "\\define myMacro()\nnothing\n\\end\n" ) ) . toEqual (
2018-07-03 11:09:59 +00:00
[ { type : 'set' , attributes : { name : { type : 'string' , value : 'myMacro' } , value : { type : 'string' , value : 'nothing' } } , children : [ ] , params : [ ] , isMacroDefinition : true } ]
2013-07-03 15:01:01 +00:00
) ;
2021-06-14 16:39:56 +00:00
} ) ;
2022-04-30 12:06:28 +00:00
it ( "should parse function definitions with no parameters" , function ( ) {
expect ( parse ( "\\function myMacro\nnothing\n\\end\n" ) ) . toEqual (
[ { type : 'set' , attributes : { name : { type : 'string' , value : 'myMacro' } , value : { type : 'string' , value : 'nothing' } } , children : [ ] , variableParams : [ ] , isFunctionDefinition : true } ]
) ;
} ) ;
it ( "should parse single line function definitions with no parameters" , function ( ) {
expect ( parse ( "\\function myMacro nothing\n" ) ) . toEqual (
[ { type : 'set' , attributes : { name : { type : 'string' , value : 'myMacro' } , value : { type : 'string' , value : 'nothing' } } , children : [ ] , variableParams : [ ] , isFunctionDefinition : true } ]
) ;
} ) ;
it ( "should parse function definitions with parameters" , function ( ) {
2022-04-30 11:44:26 +00:00
expect ( parse ( "\\function myMacro(one,two,three,four:elephant)\nnothing\n\\end\n" ) ) . toEqual (
[ { type : 'set' , attributes : { name : { type : 'string' , value : 'myMacro' } , value : { type : 'string' , value : 'nothing' } } , children : [ ] , variableParams : [ { name : 'one' } , { name : 'two' } , { name : 'three' } , { name : 'four' , default : 'elephant' } ] , isFunctionDefinition : true } ]
) ;
} ) ;
it ( "should parse function definitions" , function ( ) {
expect ( parse ( "\\function myMacro(one:'Jaguar')\n<$text text=<<one>>/>\n\\end\n\n" ) ) . toEqual (
[ { type : 'set' , attributes : { name : { type : 'string' , value : 'myMacro' } , value : { type : 'string' , value : '<$text text=<<one>>/>' } } , children : [ ] , variableParams : [ { name : 'one' , "default" : 'Jaguar' } ] , isFunctionDefinition : true } ]
) ;
} ) ;
2022-02-21 15:28:21 +00:00
it ( "should parse comment in pragma area. Comment will be invisible" , function ( ) {
2021-06-14 16:39:56 +00:00
expect ( parse ( "<!-- comment in pragma area -->\n\\define aMacro()\nnothing\n\\end\n" ) ) . toEqual (
2013-07-03 15:01:01 +00:00
2022-04-30 11:44:26 +00:00
[ { type : 'set' , attributes : { name : { type : 'string' , value : 'aMacro' } , value : { type : 'string' , value : 'nothing' } } , children : [ ] , params : [ ] , isMacroDefinition : true } ]
2021-06-14 16:39:56 +00:00
) ;
2013-07-03 15:01:01 +00:00
} ) ;
2022-02-21 15:28:21 +00:00
it ( "should block mode filtered transclusions" , function ( ) {
expect ( parse ( "{{{ filter }}}" ) ) . toEqual (
[ { type : 'list' , attributes : { filter : { type : 'string' , value : ' filter ' } } , isBlock : true } ]
) ;
expect ( parse ( "{{{ fil\nter }}}" ) ) . toEqual (
[ { type : 'list' , attributes : { filter : { type : 'string' , value : ' fil\nter ' } } , isBlock : true } ]
) ;
} ) ;
2021-01-29 13:26:31 +00:00
it ( "should parse inline macro calls" , function ( ) {
2013-11-17 21:53:12 +00:00
expect ( parse ( "<<john>><<paul>><<george>><<ringo>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 35 , children : [ { type : 'macrocall' , start : 0 , params : [ ] , name : 'john' , end : 8 } , { type : 'macrocall' , start : 8 , params : [ ] , name : 'paul' , end : 16 } , { type : 'macrocall' , start : 16 , params : [ ] , name : 'george' , end : 26 } , { type : 'macrocall' , start : 26 , params : [ ] , name : 'ringo' , end : 35 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "text <<john one:val1 two: 'val \"2\"' three: \"val '3'\" four: \"\"\"val 4\"5'\"\"\" five: [[val 5]] >>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 92 , children : [ { type : 'text' , text : 'text ' , start : 0 , end : 5 } , { type : 'macrocall' , name : 'john' , start : 5 , params : [ { type : 'macro-parameter' , start : 11 , value : 'val1' , name : 'one' , end : 20 } , { type : 'macro-parameter' , start : 20 , value : 'val "2"' , name : 'two' , end : 35 } , { type : 'macro-parameter' , start : 35 , value : 'val \'3\'' , name : 'three' , end : 52 } , { type : 'macro-parameter' , start : 52 , value : 'val 4"5\'' , name : 'four' , end : 73 } , { type : 'macro-parameter' , start : 73 , value : 'val 5' , name : 'five' , end : 89 } ] , end : 92 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "ignored << carrots <<john>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 27 , children : [ { type : 'text' , text : 'ignored << carrots ' , start : 0 , end : 19 } , { type : 'macrocall' , name : 'john' , start : 19 , params : [ ] , end : 27 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "text <<<john>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 14 , children : [ { type : 'text' , text : 'text ' , start : 0 , end : 5 } , { type : 'macrocall' , name : '<john' , start : 5 , params : [ ] , end : 14 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "before\n<<john>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 15 , children : [ { type : 'text' , text : 'before\n' , start : 0 , end : 7 } , { type : 'macrocall' , start : 7 , params : [ ] , name : 'john' , end : 15 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
// A single space will cause it to be inline
expect ( parse ( "<<john>> " ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 9 , children : [ { type : 'macrocall' , start : 0 , params : [ ] , name : 'john' , end : 8 } , { type : 'text' , text : ' ' , start : 8 , end : 9 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "text <<outie one:'my <<innie>>' >>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 34 , children : [ { type : 'text' , text : 'text ' , start : 0 , end : 5 } , { type : 'macrocall' , start : 5 , params : [ { type : 'macro-parameter' , start : 12 , value : 'my <<innie>>' , name : 'one' , end : 31 } ] , name : 'outie' , end : 34 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
} ) ;
it ( "should parse block macro calls" , function ( ) {
expect ( parse ( "<<john>>\n<<paul>>\r\n<<george>>\n<<ringo>>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , name : 'john' , params : [ ] , end : 8 , isBlock : true } , { type : 'macrocall' , start : 9 , name : 'paul' , params : [ ] , end : 17 , isBlock : true } , { type : 'macrocall' , start : 19 , name : 'george' , params : [ ] , end : 29 , isBlock : true } , { type : 'macrocall' , start : 30 , name : 'ringo' , params : [ ] , end : 39 , isBlock : true } ]
) ;
expect ( parse ( "<<john one:val1 two: 'val \"2\"' three: \"val '3'\" four: \"\"\"val 4\"5'\"\"\" five: [[val 5]] >>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , name : 'john' , params : [ { type : 'macro-parameter' , start : 6 , value : 'val1' , name : 'one' , end : 15 } , { type : 'macro-parameter' , start : 15 , value : 'val "2"' , name : 'two' , end : 30 } , { type : 'macro-parameter' , start : 30 , value : 'val \'3\'' , name : 'three' , end : 47 } , { type : 'macro-parameter' , start : 47 , value : 'val 4"5\'' , name : 'four' , end : 68 } , { type : 'macro-parameter' , start : 68 , value : 'val 5' , name : 'five' , end : 84 } ] , end : 87 , isBlock : true } ]
) ;
expect ( parse ( "<< carrots\n\n<<john>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 10 , children : [ { type : 'text' , text : '<< carrots' , start : 0 , end : 10 } ] } , { type : 'macrocall' , start : 12 , params : [ ] , name : 'john' , end : 20 , isBlock : true } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "before\n\n<<john>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 6 , children : [ { type : 'text' , text : 'before' , start : 0 , end : 6 } ] } , { type : 'macrocall' , start : 8 , name : 'john' , params : [ ] , end : 16 , isBlock : true } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "<<john>>\nafter" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'macrocall' , start : 0 , name : 'john' , params : [ ] , end : 8 , isBlock : true } , { type : 'element' , tag : 'p' , start : 9 , end : 14 , children : [ { type : 'text' , text : 'after' , start : 9 , end : 14 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
expect ( parse ( "<<multiline arg:\"\"\"\n\nwikitext\n\"\"\" >>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , params : [ { type : 'macro-parameter' , start : 11 , value : '\n\nwikitext\n' , name : 'arg' , end : 33 } ] , name : 'multiline' , end : 36 , isBlock : true } ]
) ;
expect ( parse ( "<<outie one:'my <<innie>>' >>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , params : [ { type : 'macro-parameter' , start : 7 , value : 'my <<innie>>' , name : 'one' , end : 26 } ] , name : 'outie' , end : 29 , isBlock : true } ]
) ;
} ) ;
it ( "should parse tricky macrocall parameters" , function ( ) {
expect ( parse ( "<<john pa>am>>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , params : [ { type : 'macro-parameter' , start : 6 , value : 'pa>am' , end : 12 } ] , name : 'john' , end : 14 , isBlock : true } ]
) ;
expect ( parse ( "<<john param> >>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , params : [ { type : 'macro-parameter' , start : 6 , value : 'param>' , end : 13 } ] , name : 'john' , end : 16 , isBlock : true } ]
) ;
expect ( parse ( "<<john param>>>" ) ) . toEqual (
2021-04-25 14:03:35 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 15 , children : [ { type : 'macrocall' , start : 0 , params : [ { type : 'macro-parameter' , start : 6 , value : 'param' , end : 12 } ] , name : 'john' , end : 14 } , { type : 'text' , text : '>' , start : 14 , end : 15 } ] } ]
2021-01-29 13:26:31 +00:00
) ;
// equals signs should be allowed
expect ( parse ( "<<john var>=4 >>" ) ) . toEqual (
[ { type : 'macrocall' , start : 0 , params : [ { type : 'macro-parameter' , start : 6 , value : 'var>=4' , end : 13 } ] , name : 'john' , end : 16 , isBlock : true } ]
2013-11-17 21:53:12 +00:00
) ;
} ) ;
2013-12-30 11:45:18 +00:00
it ( "should parse horizontal rules" , function ( ) {
expect ( parse ( "---Not a rule\n\n----\n\nBetween\n\n---" ) ) . toEqual (
2021-05-29 18:30:04 +00:00
[ { type : 'element' , tag : 'p' , start : 0 , end : 13 , children : [ { type : 'entity' , entity : '—' } , { type : 'text' , text : 'Not a rule' , start : 3 , end : 13 } ] } , { type : 'element' , tag : 'hr' } , { type : 'element' , tag : 'p' , start : 21 , end : 28 , children : [ { type : 'text' , text : 'Between' , start : 21 , end : 28 } ] } , { type : 'element' , tag : 'hr' } ]
2013-12-30 11:45:18 +00:00
) ;
} ) ;
2013-12-14 17:05:57 +00:00
it ( "should parse hard linebreak areas" , function ( ) {
expect ( parse ( "\"\"\"Something\nin the\nway she moves\n\"\"\"\n\n" ) ) . toEqual (
2021-05-29 18:30:04 +00:00
[ { type : 'element' , tag : 'p' , children : [ { type : 'text' , text : 'Something' , start : 3 , end : 12 } , { type : 'element' , tag : 'br' } , { type : 'text' , text : 'in the' , start : 13 , end : 19 } , { type : 'element' , tag : 'br' } , { type : 'text' , text : 'way she moves' , start : 20 , end : 33 } , { type : 'element' , tag : 'br' } ] , start : 0 , end : 37 } ]
2013-12-14 17:05:57 +00:00
) ;
} ) ;
2013-07-03 15:01:01 +00:00
} ) ;
} ) ( ) ;