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.
This commit is contained in:
parent
417cde38af
commit
eb4d522a56
2 changed files with 12 additions and 0 deletions
10
README
10
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
|
||||
=================================
|
||||
|
|
|
@ -58,6 +58,8 @@ data Extension = Ext_footnotes
|
|||
| Ext_citations
|
||||
| Ext_raw_tex
|
||||
| Ext_tex_math_dollars
|
||||
| Ext_tex_math_single_backslash
|
||||
| Ext_tex_math_double_backslash
|
||||
| Ext_latex_macros
|
||||
| Ext_delimited_code_blocks
|
||||
| Ext_inline_code_attributes
|
||||
|
|
Loading…
Add table
Reference in a new issue