aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-09-01 15:43:17 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-09-02 03:05:01 +0300
commit746c30971ebbf9c1b02a3d7b7c5d94e67f8ee9ed (patch)
treeea5c8a23b5f7dc7bf2b7645695e4c88e47e56755 /src
parentbd2bd9aeaab8a49372ba73d884a29f9ad1c8e9b7 (diff)
downloadpandoc-746c30971ebbf9c1b02a3d7b7c5d94e67f8ee9ed.tar.gz
Muse writer: add more comments
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Writers/Muse.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Writers/Muse.hs b/src/Text/Pandoc/Writers/Muse.hs
index cedd376e8..a21bf5fc0 100644
--- a/src/Text/Pandoc/Writers/Muse.hs
+++ b/src/Text/Pandoc/Writers/Muse.hs
@@ -70,9 +70,9 @@ data WriterEnv =
WriterEnv { envOptions :: WriterOptions
, envTopLevel :: Bool
, envInsideBlock :: Bool
- , envInlineStart :: Bool
+ , envInlineStart :: Bool -- ^ True if there is only whitespace since last newline
, envInsideLinkDescription :: Bool -- ^ Escape ] if True
- , envAfterSpace :: Bool
+ , envAfterSpace :: Bool -- ^ There is whitespace (not just newline) before
, envOneLine :: Bool -- ^ True if newlines are not allowed
}