Use "gaps" in copyrightMessage string for cleaner code formatting.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@521 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2007-01-31 01:08:57 +00:00
parent 6c3d96a776
commit f7fcbf528f

View file

@ -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)]