aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Org/Blocks.hs
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2016-10-30 13:20:25 +0100
committerAlbert Krewinkel <albert@zeitkraut.de>2016-10-30 13:20:25 +0100
commit63bdc5d08f81365db15b1d9ae11c1d6af72ae35e (patch)
tree9bec9e51f597ba285d30fae303eb65c7053339e8 /src/Text/Pandoc/Readers/Org/Blocks.hs
parentd5182778c45704b0a2d5d283a7fca5104588af81 (diff)
downloadpandoc-63bdc5d08f81365db15b1d9ae11c1d6af72ae35e.tar.gz
Org reader: support the `todo` export option
The `todo` export option allows to toggle the inclusion of TODO keywords in the output. Setting this to `nil` causes TODO keywords to be dropped from headlines. The default is to include the keywords.
Diffstat (limited to 'src/Text/Pandoc/Readers/Org/Blocks.hs')
-rw-r--r--src/Text/Pandoc/Readers/Org/Blocks.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Blocks.hs b/src/Text/Pandoc/Readers/Org/Blocks.hs
index ead600ccc..a5957dbc9 100644
--- a/src/Text/Pandoc/Readers/Org/Blocks.hs
+++ b/src/Text/Pandoc/Readers/Org/Blocks.hs
@@ -196,9 +196,12 @@ headlineToHeaderWithContents hdln@(Headline {..}) = do
headlineToHeader :: Headline -> OrgParser Blocks
headlineToHeader (Headline {..}) = do
- let todoText = case headlineTodoMarker of
+ exportTodoKeyword <- getExportSetting exportWithTodoKeywords
+ let todoText = if exportTodoKeyword
+ then case headlineTodoMarker of
Just kw -> todoKeywordToInlines kw <> B.space
Nothing -> mempty
+ else mempty
let text = tagTitle (todoText <> headlineText) headlineTags
let propAttr = propertiesToAttr headlineProperties
attr <- registerHeader propAttr headlineText