Update FAQ styling

This commit is contained in:
Kevin Decker
2014-07-05 12:22:28 -05:00
parent 7890c7dc89
commit efb17b80a6
+2 -2
View File
@@ -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.