diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2017-02-06 23:33:23 +0100 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2017-02-06 23:33:23 +0100 |
| commit | 47a16065c44eb5028ca9b9e86993fe880ef2a37d (patch) | |
| tree | 87187306f99b0782fb7709a57491c774a5a168a3 /src/Text/Pandoc.hs | |
| parent | d1c16c4785b177fc71358595ef8e3ac9bb75b4ba (diff) | |
Removed --parse-raw and readerParseRaw.
These were confusing.
Now we rely on the +raw_tex or +raw_html extension with latex
or html input.
Thus, instead of
--parse-raw -f latex
we use
-f latex+raw_tex
and instead of
--parse-raw -f html
we use
-f html+raw_html
Diffstat (limited to 'src/Text/Pandoc.hs')
| -rw-r--r-- | src/Text/Pandoc.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc.hs b/src/Text/Pandoc.hs index 920bc9655..1a0bbc4ab 100644 --- a/src/Text/Pandoc.hs +++ b/src/Text/Pandoc.hs @@ -336,6 +336,7 @@ getDefaultExtensions "context" = extensionsFromList getDefaultExtensions "textile" = extensionsFromList [Ext_old_dashes, Ext_smart, + Ext_raw_html, Ext_auto_identifiers] getDefaultExtensions _ = extensionsFromList [Ext_auto_identifiers] |
