commit bd6ebf23dd19bc06f1af27a5867f7e5e33d5bbce
parent 73c33b015ab53a082fe67c84e8c78f8e015625e4
Author: Emily Eisenberg <xymostech@gmail.com>
Date: Fri, 19 Sep 2014 11:49:02 -0700
Merge pull request #54 from adammark/patch-1
Update README.md
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -18,6 +18,12 @@ Download the built files from [the releases page](https://github.com/khan/katex/
<script src="/path/to/katex.min.js" type="text/javascript"></script>
```
+Specify UTF-8 as your content type:
+
+```html
+<meta charset="utf-8">
+```
+
Call `katex.render` with a TeX expression and a DOM element to render into:
```js