aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
AgeCommit message (Collapse)AuthorFilesLines
2012-05-31Version bump to 1.9.4.John MacFarlane1-1/+1
2012-05-30Merge pull request #521 from jonassmedegaard/masterJohn MacFarlane1-1/+5
Slidy lang support, and new Slideous writer
2012-05-29Require highlighting-kate >= 0.5.1.John MacFarlane1-3/+3
This is required for proper highlighted inline code in LaTeX. Closes #527.
2012-05-24Add support for Slideous output.Jonas Smedegaard1-1/+5
2012-05-17Require highlighting-kate 0.5.0.6.John MacFarlane1-3/+3
2012-05-12Updated cabal description to include docbook reader.John MacFarlane1-2/+2
2012-05-10Revert "Removed blaze_html_05 flag -- require blaze >= 0.5 by default."John MacFarlane1-6/+24
This reverts commit f67a80cea27286ba17b3696198602a6bbdae014d.
2012-05-01Version bump to 1.9.3.John MacFarlane1-1/+1
2012-04-24Removed blaze_html_05 flag -- require blaze >= 0.5 by default.John MacFarlane1-24/+6
2012-04-23changes for blaze-html 0.5Mark Wright1-3/+24
2012-04-20Merge pull request #491 from mb21/patch-1John MacFarlane1-0/+1
Added link, code and info elements to DocBook Reader
2012-04-15Allow mtl-2.1.*Simon Hengel1-3/+3
2012-04-14Added skeleton of basic docbook reader.John MacFarlane1-0/+1
2012-04-01Version bump to 1.9.2.John MacFarlane1-1/+1
2012-03-15Bumped version bound for test-framework.John MacFarlane1-1/+1
2012-03-10pandoc.cabal: fix typo in zlib's upper bound '<= 0.6' should be '< 0.6'Sergei Trofimovich1-3/+3
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
2012-03-09Bump version to 1.9.1.2.John MacFarlane1-1/+1
2012-02-11Version bump to 1.9.1.1.John MacFarlane1-1/+1
2012-02-10Added two needed gifs to the data files for s5.John MacFarlane1-1/+2
ALso removed sildes.min.js, which was no longer being used.
2012-02-08Require texmath >= 0.6.0.2.John MacFarlane1-3/+3
2012-02-08Require h-k 0.5.0.2.John MacFarlane1-3/+3
2012-02-07Version bump to 1.9.1.John MacFarlane1-1/+1
(Due to new field in ParserState introduced in last commit.)
2012-02-06Version bump to 1.9.0.5.John MacFarlane1-1/+1
2012-02-06cabal: Put build-depends for tests under conditional.John MacFarlane1-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-06Version bump to 1.9.0.4, updated changelog.John MacFarlane1-1/+1
2012-02-06Relaxed version upper bound for test-framework from < 0.5 to < 0.6, since ↵Conal Elliott1-1/+1
0.5 is the first version on Hackage that builds under GHC 7.4.1.
2012-02-06More cabal tweaks, default to Haskell98 for ghc 6.12 compatibility.John MacFarlane1-5/+4
2012-02-06Version bump to 1.9.0.3.John MacFarlane1-1/+1
2012-02-06cabal changes required by version >= 1.10.John MacFarlane1-32/+88
2012-02-06Require cabal version >= 1.10.John MacFarlane1-1/+1
This is needed for ghcPackageDbOptions in Setup.hs.
2012-02-05Bump version to 1.9.0.2.John MacFarlane1-1/+1
2012-02-05Allow json 0.4.John MacFarlane1-2/+2
Otherwise we can't compile on ghc 6.12.
2012-02-05Removed module Text.Pandoc.CharacterReferences.John MacFarlane1-1/+0
Moved characterReference parser to Text.Pandoc.Parsing. decodeCharacterReferences is now replaced by fromEntities in Text.Pandoc.XML.
2012-02-05Removed 'nohl' variants of tests from pandoc.cabal.John MacFarlane1-2/+0
2012-02-05Tightened version bounds for pandoc-types, json.John MacFarlane1-4/+4
2012-02-05Bump highlighting-kate version.John MacFarlane1-2/+2
2012-02-05Remove dependency on dlist.John MacFarlane1-2/+0
Use sequence in Pretty instead.
2012-02-05Added 6.12.1 to list of tested-with ghc versions.John MacFarlane1-1/+1
2012-02-05Don't use -rtsopts unless ghc >= 7.0.1.John MacFarlane1-2/+8
2012-02-04Depend on parsec 3 - for applicative instances used in LaTeX reader.John MacFarlane1-2/+2
This is okay now that parsec 3 is the standard version in the Haskell platform, and the speed issues have been addressed.
2012-01-31Bumped xml version to >= 1.3.12.John MacFarlane1-2/+2
2012-01-31Change copyright date.John MacFarlane1-1/+1
2012-01-30Added default.beamer template (separate from default.latex).John MacFarlane1-1/+1
2012-01-28Remove dependency on old-time.John MacFarlane1-2/+0
2012-01-28Put date in YYYY-MM-DD format if possible for HTML, docx metadata.John MacFarlane1-0/+4
Added normalizeDate to Text.Pandoc.Shared.
2012-01-25Depend on highlighting-kate 0.5.John MacFarlane1-2/+2
This uses styleToCss instead of styleToHtml.
2012-01-22Added Text.Pandoc.Slides.John MacFarlane1-0/+1
2012-01-20Removed markdown2pdf and documentation.John MacFarlane1-28/+1
2012-01-20Added Text.Pandoc.PDF - converts latex to PDF.John MacFarlane1-2/+5
2012-01-19Added Docx writer.John MacFarlane1-4/+7
* New module `Text.Pandoc.Docx`. * New output format `docx`. * Added reference.docx. * New option `--reference-docx`. The writer includes support for highlighted code blocks and math (which is converted from TeX to OMML using texmath's new OMML module).