summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-08-10 21:57:54 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-08-10 21:57:54 -0700
commiteb4d522a56de3455f9b31841a04adf64c8dafa90 (patch)
treef2923e649918f12190144d29d13c73825c7c3863 /README
parent417cde38af7a77e79f12c9f78b678aec50701af2 (diff)
Options and documentation for backslash tex math options.
Ext_tex_math_single_backslash and Ext_tex_math_double_backslash. Still need to code in reader.
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 10 insertions, 0 deletions
diff --git a/README b/README
index e988b7b6f..4b27f3dde 100644
--- a/README
+++ b/README
@@ -2196,6 +2196,16 @@ example, `markdown+hard_line_breaks` is markdown with hard line breaks.
Causes all newlines within a paragraph to be interpreted as hard line
breaks instead of spaces.
+**Extension: `tex_math_single_backslash`**\
+Causes anything between `\(` and `\)` to be interpreted as inline
+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 `[`.
+
+**Extension: `tex_math_double_backslash`**\
+Causes anything between `\\(` and `\\)` to be interpreted as inline
+TeX math, and anything between `\\[` and `\\]` to be interpreted
+as display TeX math.
Producing slide shows with Pandoc
=================================