commit 5cfa59e5b6874b0396a7653c3d57128788b1262d
parent aa7052d03a23628bb950fe508ea632aefc80d700
Author: Adam Mark <adammark75@gmail.com>
Date: Tue, 16 Sep 2014 11:17:18 -0400
Update README.md
Must specify UTF-8 in document for math characters to render properly.
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