...
|
...
|
@@ -15,7 +15,19 @@ To make this the default HTML template, symlink (or rename)
|
15
|
15
|
one you need to use [`--standalone`][].
|
16
|
16
|
|
17
|
17
|
Options you probably want include [`--toc`][], and perhaps
|
18
|
|
-[`--toc-depth`][]`=6`. Another nice option is [`--mathjax`][].
|
|
18
|
+[`--toc-depth`][]`=6`. Another nice option is [`--mathjax`][], which can take a
|
|
19
|
+URL. The pandoc default is something like the TeX only
|
|
20
|
+
|
|
21
|
+```
|
|
22
|
+https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_CHTML-full
|
|
23
|
+```
|
|
24
|
+
|
|
25
|
+to also have AsciiMath available (with `%%` delimiters) use instead something
|
|
26
|
+like
|
|
27
|
+
|
|
28
|
+```
|
|
29
|
+https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML-full
|
|
30
|
+```
|
19
|
31
|
|
20
|
32
|
[pandoc]: https://pandoc.org
|
21
|
33
|
[template]: https://pandoc.org/MANUAL.html#templates
|