diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-02-02 04:41:22 +0400 |
---|---|---|
committer | Albert Krewinkel <albert+github@zeitkraut.de> | 2017-02-02 08:58:35 +0100 |
commit | 9327e70c1081f83f60bbc473f60bb25d7cee314a (patch) | |
tree | c4d050b34130e622667cac51873d3ec89da7cf3c | |
parent | 5b70b57c1169c59a23197edd3c909c44452b18fc (diff) |
Org.hs: remove misleading comment
This comment is likely copied from RST.hs where 'refs' variable indeed exists, but makes no sense here.
-rw-r--r-- | src/Text/Pandoc/Writers/Org.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Org.hs b/src/Text/Pandoc/Writers/Org.hs index 316cc61cf..ae1c92a97 100644 --- a/src/Text/Pandoc/Writers/Org.hs +++ b/src/Text/Pandoc/Writers/Org.hs @@ -71,7 +71,6 @@ pandocToOrg (Pandoc meta blocks) = do meta body <- blockListToOrg blocks notes <- liftM (reverse . stNotes) get >>= notesToOrg - -- note that the notes may contain refs, so we do them first hasMath <- liftM stHasMath get let main = render colwidth $ foldl ($+$) empty $ [body, notes] let context = defField "body" main |