Moved all haskell source to src subdirectory.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@1528 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2009-01-24 20:00:26 +00:00
parent 39e8d84866
commit 42aca57dee
32 changed files with 3 additions and 3 deletions

View file

@ -158,7 +158,7 @@ Library
Build-depends: citeproc-hs
Exposed-Modules: Text.Pandoc.Biblio
cpp-options: -D_CITEPROC
Hs-Source-Dirs: .
Hs-Source-Dirs: src
Exposed-Modules: Text.Pandoc,
Text.Pandoc.Blocks,
Text.Pandoc.Definition,
@ -198,7 +198,7 @@ Library
Buildable: False
Executable pandoc
Hs-Source-Dirs: .
Hs-Source-Dirs: src
Main-Is: Main.hs
Ghc-Options: -O2 -Wall -threaded
Ghc-Prof-Options: -auto-all

View file

@ -635,7 +635,7 @@ doubleQuoteStart :: CharParser st String
doubleQuoteStart = string "``"
doubleQuoteEnd :: CharParser st String
doubleQuoteEnd = string "\"" <|> try (string "''")
doubleQuoteEnd = try $ string "''"
ellipses :: GenParser Char st Inline
ellipses = try $ string "\\ldots" >> optional (try $ string "{}") >>