Added another test case related to #491 - Allow plain text parsing

This commit is contained in:
Patrick Steele-Idem 2017-01-05 19:21:36 -07:00
parent 4355bc0e4d
commit 3d38159795
4 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,3 @@
module.exports = function codeGenerator(el, codegen) {
return el.body;
};

View File

@ -0,0 +1,4 @@
{
"body": "parsed-text",
"preserve-whitespace": true
}

View File

@ -0,0 +1,4 @@
Content
More Content
Frank

View File

@ -0,0 +1,7 @@
var name = 'Frank';
<parsed-text>
Content
More Content
${name}
</parsed-text>