aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-01-31 01:08:57 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-01-31 01:08:57 +0000
commitf7fcbf528f1d93d9cd18926fbb80e9be604564d0 (patch)
treebc87b97df4697415f16cf6b50407e46e83debcba
parent6c3d96a776310a6804c4e9b97df7dbd86450a303 (diff)
downloadpandoc-f7fcbf528f1d93d9cd18926fbb80e9be604564d0.tar.gz
Use "gaps" in copyrightMessage string for cleaner code formatting.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@521 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r--src/Main.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs
index f3c70c472..39686bafb 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -61,7 +61,10 @@ version :: String
version = "0.4"
copyrightMessage :: String
-copyrightMessage = "\nCopyright (C) 2006 John MacFarlane\nWeb: http://sophos.berkeley.edu/macfarlane/pandoc\nThis is free software; see the source for copying conditions. There is no\nwarranty, not even for merchantability or fitness for a particular purpose."
+copyrightMessage = "\nCopyright (C) 2006 John MacFarlane\n\
+ \Web: http://sophos.berkeley.edu/macfarlane/pandoc\n\
+ \This is free software; see the source for copying conditions. There is no\n\
+ \warranty, not even for merchantability or fitness for a particular purpose."
-- | Association list of formats and readers.
readers :: [(String, ParserState -> String -> Pandoc)]