aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-02-09 22:30:00 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2016-02-09 22:30:52 -0800
commitbbc67dee36d0a5700259edc0f67f8c9addd16388 (patch)
tree544cc1eb6917eb7dc1a24be1c6c32cf6aa9ef179
parent52794d8d52954b23fa3da76eea4b08a323d1c589 (diff)
downloadpandoc-bbc67dee36d0a5700259edc0f67f8c9addd16388.tar.gz
Removed `tex_math_single_backslash` from `markdown_github` options.
Closes #2707.
-rw-r--r--README3
-rw-r--r--src/Text/Pandoc/Options.hs1
2 files changed, 1 insertions, 3 deletions
diff --git a/README b/README
index d0d0ddd6b..884cb1f94 100644
--- a/README
+++ b/README
@@ -3378,8 +3378,7 @@ variants are supported:
`shortcut_reference_links`.
`markdown_github` (GitHub-Flavored Markdown)
-: `pipe_tables`, `raw_html`, `tex_math_single_backslash`,
- `fenced_code_blocks`, `auto_identifiers`,
+: `pipe_tables`, `raw_html`, `fenced_code_blocks`, `auto_identifiers`,
`ascii_identifiers`, `backtick_code_blocks`, `autolink_bare_uris`,
`intraword_underscores`, `strikeout`, `hard_line_breaks`, `emoji`,
`shortcut_reference_links`.
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs
index 7dd47cd59..333f499fb 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -202,7 +202,6 @@ githubMarkdownExtensions :: Set Extension
githubMarkdownExtensions = Set.fromList
[ Ext_pipe_tables
, Ext_raw_html
- , Ext_tex_math_single_backslash
, Ext_fenced_code_blocks
, Ext_auto_identifiers
, Ext_ascii_identifiers