summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FAQ.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/FAQ.md b/FAQ.md
index 35cbee9..ac52042 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -12,11 +12,11 @@
1. How can I include script tags in my template?
If loading the template via an inlined `<script type="text/x-handlebars">` tag then you may need to break up the script tag with an empty comment to avoid browser parser errors:
-```
+ ```
<script type="text/x-handlebars">
foo
<scr{{!}}ipt src="bar"></scr{{!}}ipt>
</script>
-```
+ ```
It's generally recommended that templates are served through external, precompiled, files, which do not suffer from this issue.