diff options
author | Kevin Decker <kpdecker@gmail.com> | 2014-07-05 12:22:28 -0500 |
---|---|---|
committer | Kevin Decker <kpdecker@gmail.com> | 2014-07-05 12:22:28 -0500 |
commit | efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7 (patch) | |
tree | 002d1e7b51cacea31ee8c46b052c789a3d2fe072 /FAQ.md | |
parent | 7890c7dc891b264bb28b477ffd3b2e6053f4b1d4 (diff) | |
download | handlebars.js-efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7.zip handlebars.js-efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7.tar.gz handlebars.js-efb17b80a634e5fdfb06edaee2c9d94da6d0e0b7.tar.bz2 |
Update FAQ styling
Diffstat (limited to 'FAQ.md')
-rw-r--r-- | FAQ.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |