Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-25 | Added Text.Pandoc.Options. | John MacFarlane | 1 | -0/+1 | |
2012-07-22 | Revised code for pipe tables. | John MacFarlane | 1 | -2/+2 | |
* All tables now require at least one body row. * Renamed from 'extra' to 'pipe' tables. * Moved functions from Parsing to Readers.Markdown. * Cleaned up code; revised to parse in one pass rather than parsing a raw string, splitting it, and parsing the components. * Allow pipe tables without pipes on the ends (as PHP Markdown Extra does). | |||||
2012-07-22 | Renamed tests/markdown-tables -> tests/extra-tables. | John MacFarlane | 1 | -1/+3 | |
Added to cabal file. | |||||
2012-07-22 | Added Text.Pandoc.Writers.FB2 to list of exported modules. | John MacFarlane | 1 | -1/+2 | |
Also added FB2 to description. | |||||
2012-07-19 | Provide Data.Default instances for ParserState and WriterOptions. | John MacFarlane | 1 | -0/+3 | |
Now you can use def (which is re-exported by Text.Pandoc) instead of defaultParserState or defaultWriterOptions. For now, these are still defined too, so existing code need not change. Closes #546. | |||||
2012-07-02 | Removed -threaded from cabal ghc-options. | John MacFarlane | 1 | -6/+6 | |
Use of the threaded runtime imposes a slight performance penalty, and there is really no need for it, since pandoc doesn't run faster on multiple cores. | |||||
2012-06-28 | Remove -threaded in library stanza. | John MacFarlane | 1 | -3/+3 | |
2012-06-27 | Bump version to 1.9.4.2. | John MacFarlane | 1 | -1/+1 | |
2012-06-27 | Use -rtsopts and -threaded. | John MacFarlane | 1 | -9/+18 | |
2012-06-25 | fixing exported test modules and files | Alexander V Vershilov | 1 | -0/+3 | |
2012-06-08 | Bumped version to 1.9.4.1. | John MacFarlane | 1 | -1/+1 | |
2012-05-31 | Version bump to 1.9.4. | John MacFarlane | 1 | -1/+1 | |
2012-05-30 | Merge pull request #521 from jonassmedegaard/master | John MacFarlane | 1 | -1/+5 | |
Slidy lang support, and new Slideous writer | |||||
2012-05-29 | Require highlighting-kate >= 0.5.1. | John MacFarlane | 1 | -3/+3 | |
This is required for proper highlighted inline code in LaTeX. Closes #527. | |||||
2012-05-24 | Add support for Slideous output. | Jonas Smedegaard | 1 | -1/+5 | |
2012-05-17 | Require highlighting-kate 0.5.0.6. | John MacFarlane | 1 | -3/+3 | |
2012-05-12 | Updated cabal description to include docbook reader. | John MacFarlane | 1 | -2/+2 | |
2012-05-10 | Revert "Removed blaze_html_05 flag -- require blaze >= 0.5 by default." | John MacFarlane | 1 | -6/+24 | |
This reverts commit f67a80cea27286ba17b3696198602a6bbdae014d. | |||||
2012-05-01 | Version bump to 1.9.3. | John MacFarlane | 1 | -1/+1 | |
2012-04-24 | Removed blaze_html_05 flag -- require blaze >= 0.5 by default. | John MacFarlane | 1 | -24/+6 | |
2012-04-23 | changes for blaze-html 0.5 | Mark Wright | 1 | -3/+24 | |
2012-04-20 | Merge pull request #491 from mb21/patch-1 | John MacFarlane | 1 | -0/+1 | |
Added link, code and info elements to DocBook Reader | |||||
2012-04-15 | Allow mtl-2.1.* | Simon Hengel | 1 | -3/+3 | |
2012-04-14 | Added skeleton of basic docbook reader. | John MacFarlane | 1 | -0/+1 | |
2012-04-01 | Version bump to 1.9.2. | John MacFarlane | 1 | -1/+1 | |
2012-03-15 | Bumped version bound for test-framework. | John MacFarlane | 1 | -1/+1 | |
2012-03-10 | pandoc.cabal: fix typo in zlib's upper bound '<= 0.6' should be '< 0.6' | Sergei Trofimovich | 1 | -3/+3 | |
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> | |||||
2012-03-09 | Bump version to 1.9.1.2. | John MacFarlane | 1 | -1/+1 | |
2012-02-11 | Version bump to 1.9.1.1. | John MacFarlane | 1 | -1/+1 | |
2012-02-10 | Added two needed gifs to the data files for s5. | John MacFarlane | 1 | -1/+2 | |
ALso removed sildes.min.js, which was no longer being used. | |||||
2012-02-08 | Require texmath >= 0.6.0.2. | John MacFarlane | 1 | -3/+3 | |
2012-02-08 | Require h-k 0.5.0.2. | John MacFarlane | 1 | -3/+3 | |
2012-02-07 | Version bump to 1.9.1. | John MacFarlane | 1 | -1/+1 | |
(Due to new field in ParserState introduced in last commit.) | |||||
2012-02-06 | Version bump to 1.9.0.5. | John MacFarlane | 1 | -1/+1 | |
2012-02-06 | cabal: Put build-depends for tests under conditional. | John MacFarlane | 1 | -25/+25 | |
Otherwise even those who don't build with the tests flag need to have dependencies like test-framework. This restores the old behavior; I wrongly assumed that by now cabal was smart enough not to bring in build-depends for components with Buildable = False. | |||||
2012-02-06 | Version bump to 1.9.0.4, updated changelog. | John MacFarlane | 1 | -1/+1 | |
2012-02-06 | Relaxed version upper bound for test-framework from < 0.5 to < 0.6, since ↵ | Conal Elliott | 1 | -1/+1 | |
0.5 is the first version on Hackage that builds under GHC 7.4.1. | |||||
2012-02-06 | More cabal tweaks, default to Haskell98 for ghc 6.12 compatibility. | John MacFarlane | 1 | -5/+4 | |
2012-02-06 | Version bump to 1.9.0.3. | John MacFarlane | 1 | -1/+1 | |
2012-02-06 | cabal changes required by version >= 1.10. | John MacFarlane | 1 | -32/+88 | |
2012-02-06 | Require cabal version >= 1.10. | John MacFarlane | 1 | -1/+1 | |
This is needed for ghcPackageDbOptions in Setup.hs. | |||||
2012-02-05 | Bump version to 1.9.0.2. | John MacFarlane | 1 | -1/+1 | |
2012-02-05 | Allow json 0.4. | John MacFarlane | 1 | -2/+2 | |
Otherwise we can't compile on ghc 6.12. | |||||
2012-02-05 | Removed module Text.Pandoc.CharacterReferences. | John MacFarlane | 1 | -1/+0 | |
Moved characterReference parser to Text.Pandoc.Parsing. decodeCharacterReferences is now replaced by fromEntities in Text.Pandoc.XML. | |||||
2012-02-05 | Removed 'nohl' variants of tests from pandoc.cabal. | John MacFarlane | 1 | -2/+0 | |
2012-02-05 | Tightened version bounds for pandoc-types, json. | John MacFarlane | 1 | -4/+4 | |
2012-02-05 | Bump highlighting-kate version. | John MacFarlane | 1 | -2/+2 | |
2012-02-05 | Remove dependency on dlist. | John MacFarlane | 1 | -2/+0 | |
Use sequence in Pretty instead. | |||||
2012-02-05 | Added 6.12.1 to list of tested-with ghc versions. | John MacFarlane | 1 | -1/+1 | |
2012-02-05 | Don't use -rtsopts unless ghc >= 7.0.1. | John MacFarlane | 1 | -2/+8 | |