diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-28 05:28:30 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-28 05:28:30 +0000 |
commit | 17873d46392bbb5e458c2dd54b7ceca5596e926e (patch) | |
tree | 9245e38ad46290434e8eb3e8038799ceb69d3265 /src | |
parent | d65f01f467d6c6c837338d0375721f0364f66560 (diff) | |
download | pandoc-17873d46392bbb5e458c2dd54b7ceca5596e926e.tar.gz |
Main: Changed putStr to putStrLn -- mainly because MacOS doesn't display
the whole output unless there's a line ending.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@817 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index 43fb4e62d..3a19df850 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -481,7 +481,7 @@ main = do writerStrictMarkdown = strict, writerReferenceLinks = referenceLinks } - (readSources sources) >>= (hPutStr output . toUTF8 . + (readSources sources) >>= (hPutStrLn output . toUTF8 . (writer writerOptions) . (reader startParserState) . tabFilter . removeCRs . fromUTF8 . (joinWithSep "\n")) >> |