Fix example for mustache in client-side-templates extension. (#2409)

* Fix incorrect key name in template.

* Remove unnecessary escapes from docs.
This commit is contained in:
airblast 2024-03-23 18:46:57 +03:00 committed by GitHub
parent 0b29664545
commit 075ec3afdb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ a [`<template>` tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/t
<p id="content">Start</p> <p id="content">Start</p>
<template id="foo"> <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> </template>
</div> </div>
</body> </body>