Fixes #517 - [v4] Marko treats es6 string templates as marko interpolation tags

This commit is contained in:
Patrick Steele-Idem 2017-01-07 17:17:56 -07:00
parent 967b5e847f
commit b164f8dd93
4 changed files with 12 additions and 1 deletions

View File

@ -59,7 +59,7 @@
"events": "^1.0.2",
"events-light": "^1.0.0",
"he": "^1.1.0",
"htmljs-parser": "^2.2.0",
"htmljs-parser": "^2.2.3",
"lasso-modules-client": "^2.0.3",
"lasso-package-root": "^1.0.0",
"listener-tracker": "^2.0.0",

View File

@ -0,0 +1,4 @@
<script>
var content = 'abc';
var foo `Text 1: ${content}`;
</script>

View File

@ -0,0 +1,4 @@
<script>
var content = 'abc';
var foo `Text 1: ${content}`;
</script>

View File

@ -0,0 +1,3 @@
exports.templateData = {
"name": "World"
};