diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-11-18 13:58:40 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-18 13:58:40 -0800 |
commit | 9916f421dc79a17afa16cdd53c0c4803dd424907 (patch) | |
tree | 4cf08d7cb78fa4896eeafaee05d84197187c27dd | |
parent | 47e74742a86ced0098626202bd9a0faccf18f17d (diff) | |
download | pandoc-9916f421dc79a17afa16cdd53c0c4803dd424907.tar.gz |
MANUAL: clarify that math extensions work with HTML.
Clarify that `tex_math_dollars` and `tex_math_single_backslash`
will work with HTML as well as Markdown.
-rw-r--r-- | MANUAL.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 7d6d56f48..934556c8a 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -2930,7 +2930,7 @@ Or, without the `bracketed_spans` extension: <span class="smallcaps">Small caps</span> For compatibility with other Markdown flavors, CSS is also supported: - + <span style="font-variant:small-caps;">Small caps</span> This will work in all output formats that support small caps. @@ -2998,6 +2998,8 @@ HTML, Slidy, DZSlides, S5, EPUB command-line options selected. Therefore see [Math rendering in HTML] above. +This extension can be used with both `markdown` and `html` input. + [interpreted text role `:math:`]: http://docutils.sourceforge.net/docs/ref/rst/roles.html#math Raw HTML @@ -3708,6 +3710,8 @@ TeX math, and anything between `\[` and `\]` to be interpreted as display TeX math. Note: a drawback of this extension is that it precludes escaping `(` and `[`. +This extension can be used with both `markdown` and `html` input. + #### Extension: `tex_math_double_backslash` #### Causes anything between `\\(` and `\\)` to be interpreted as inline |