summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Decker <kpdecker@gmail.com>2014-07-05 12:22:28 -0500
committerKevin Decker <kpdecker@gmail.com>2014-07-05 12:22:28 -0500
commitefb17b80a634e5fdfb06edaee2c9d94da6d0e0b7 (patch)
tree002d1e7b51cacea31ee8c46b052c789a3d2fe072
parent7890c7dc891b264bb28b477ffd3b2e6053f4b1d4 (diff)
downloadhandlebars.js-efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7.zip
handlebars.js-efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7.tar.gz
handlebars.js-efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7.tar.bz2
Update FAQ styling
-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.