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
This commit is contained in:
fiddlosopher
2007-07-28 05:28:30 +00:00
parent d65f01f467
commit 17873d4639
+1 -1
View File
@@ -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")) >>