Skip to content

Commit 075ec3a

Browse files
authored
Fix example for mustache in client-side-templates extension. (#2409)
* Fix incorrect key name in template. * Remove unnecessary escapes from docs.
1 parent 0b29664 commit 075ec3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/content/extensions/client-side-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ a [`<template>` tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/t
8181
<p id="content">Start</p>
8282

8383
<template id="foo">
84-
<p> {% raw %}{{userID}}{% endraw %} and {% raw %}{{id}}{% endraw %} and {% raw %}{{title}}{% endraw %} and {% raw %}{{completed}}{% endraw %}</p>
84+
<p> {{userId}} and {{id}} and {{title}} and {{completed}}</p>
8585
</template>
8686
</div>
8787
</body>

0 commit comments

Comments
 (0)