summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Org/Blocks.hs
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2016-06-02 23:38:22 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2016-06-03 11:17:02 +0200
commitd4de8451b9eae1681b0026057757444127d18d43 (patch)
tree04331f075998b114a63a3017a0e5b58c01846ed6 /src/Text/Pandoc/Readers/Org/Blocks.hs
parent952a7dac589107cc19e606ff9cf29dfbb33002bc (diff)
Org reader: support emphasized text export option
Parsing of emphasized text can be toggled using the `*` option. This influences parsing of text marked as emphasized, strong, strikeout, and underline. Parsing of inline math, code, and verbatim text is not affected by this option.
Diffstat (limited to 'src/Text/Pandoc/Readers/Org/Blocks.hs')
-rw-r--r--src/Text/Pandoc/Readers/Org/Blocks.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Blocks.hs b/src/Text/Pandoc/Readers/Org/Blocks.hs
index 9019f44fb..896f1da1a 100644
--- a/src/Text/Pandoc/Readers/Org/Blocks.hs
+++ b/src/Text/Pandoc/Readers/Org/Blocks.hs
@@ -501,7 +501,7 @@ exportSetting :: OrgParser ()
exportSetting = choice
[ booleanSetting "^" setExportSubSuperscripts
, booleanSetting "'" setExportSmartQuotes
- , ignoredSetting "*"
+ , booleanSetting "*" setExportEmphasizedText
, ignoredSetting "-"
, ignoredSetting ":"
, ignoredSetting "<"