Skip to content

Commit

Permalink
Fix example for mustache in client-side-templates extension. (#2409)
Browse files Browse the repository at this point in the history
* Fix incorrect key name in template.

* Remove unnecessary escapes from docs.
  • Loading branch information
airblast-dev committed Mar 23, 2024
1 parent 0b29664 commit 075ec3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/content/extensions/client-side-templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ a [`<template>` tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/t
<p id="content">Start</p>

<template id="foo">
<p> {% raw %}{{userID}}{% endraw %} and {% raw %}{{id}}{% endraw %} and {% raw %}{{title}}{% endraw %} and {% raw %}{{completed}}{% endraw %}</p>
<p> {{userId}} and {{id}} and {{title}} and {{completed}}</p>
</template>
</div>
</body>
Expand Down

0 comments on commit 075ec3a

Please sign in to comment.