Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-03-05 | Hide Text.Pandoc.Highlighting. | John MacFarlane | 1 | -1/+2 | |
* Moved code for translating listings language names to highlighting-kate names and back from LaTeX reader to Highlighting. * Text.Pandoc.Highlighting no longer exposed (API change) * Text.Pandoc.Highlighting exports toListingsLang, fromListingsLang | |||||
2013-03-04 | pandoc.cabal: Require latest h-k, texmath, citeproc-hs, zip-archive. | John MacFarlane | 1 | -6/+6 | |
Pandoc will compile with older versions, but there will be bugs relating to these functions. Making the current versions dependencies is the only way to get packages updated in the distros. | |||||
2013-02-19 | Allow compilation with blaze-html 0.6. | John MacFarlane | 1 | -2/+2 | |
2013-02-13 | Increased upper bound for Diff. | John MacFarlane | 1 | -1/+1 | |
2013-02-12 | Version bump to 1.11, Text.Pandoc.Parsing no longer exposed. | John MacFarlane | 1 | -2/+2 | |
2013-02-09 | Version to 1.10.1.1 since we no longer have API change. | John MacFarlane | 1 | -1/+1 | |
2013-02-09 | Revert "Hide module Text.Pandoc.Parsing." | John MacFarlane | 1 | -1/+1 | |
This reverts commit 18a5c9a8bf071398f3976a7c2c255638e135de7c. We want to do this eventually, but as it requires a major version bump, let's wait til later. | |||||
2013-02-05 | Revert "Hide module Text.Pandoc.Highlighting." | John MacFarlane | 1 | -1/+1 | |
This reverts commit 01753ead71f6a08929f1535fcb497ff6d6015289. We need it after all in pandoc.hs. | |||||
2013-02-05 | Version bump to 1.11 due to API changes. | John MacFarlane | 1 | -1/+1 | |
2013-02-05 | Hide module Text.Pandoc.Highlighting. | John MacFarlane | 1 | -1/+1 | |
This is really an auxiliary module. | |||||
2013-02-05 | Hide module Text.Pandoc.Parsing. | John MacFarlane | 1 | -1/+1 | |
2013-01-28 | Version bump to 1.10.1. | John MacFarlane | 1 | -1/+1 | |
2013-01-25 | Increased ansi-terminal upper bound. | John MacFarlane | 1 | -1/+1 | |
2013-01-25 | Relaxed old-time version bound, allowing 1.0.*. | John MacFarlane | 1 | -1/+1 | |
I see no reason for the restriction, which requires a recent Haskell Platform. The module is only used in make-pandoc-man-pages anyway. | |||||
2013-01-23 | Version bump to 1.10.0.5. | John MacFarlane | 1 | -1/+1 | |
2013-01-23 | Use hsb2hs preprocessor instead of TH for embed_data_files. | John MacFarlane | 1 | -5/+2 | |
This should work on Windows, unlike the TH solution with file-embed. | |||||
2013-01-23 | Eliminated use of TH in test suite. | John MacFarlane | 1 | -2/+1 | |
2013-01-23 | Added Text.Pandoc.Data (non-exported) if embed_data_files selected. | John MacFarlane | 1 | -0/+3 | |
This module just exports the association list of embedded data files, which is used by Shared. | |||||
2013-01-21 | Updated tested-with in cabal file. | John MacFarlane | 1 | -1/+1 | |
2013-01-20 | Version bump to 1.10.0.4. | John MacFarlane | 1 | -1/+1 | |
2013-01-20 | Bump version to 1.10.0.3; added further missing fb2 tests. | John MacFarlane | 1 | -2/+9 | |
Updated changelog. | |||||
2013-01-20 | Version bump to 1.10.0.2. | John MacFarlane | 1 | -1/+1 | |
2013-01-20 | Added fb2 tests to extra-source-files. | John MacFarlane | 1 | -1/+8 | |
Otherwise we get an error in `cabal install --enable-tests` from Hackage. | |||||
2013-01-20 | Bump version to 1.10.0.1. | John MacFarlane | 1 | -1/+1 | |
2013-01-20 | Bump version bounds on test-framework packages. | John MacFarlane | 1 | -3/+3 | |
2013-01-19 | Updated copyright date in pandoc.cabal. | John MacFarlane | 1 | -1/+1 | |
2013-01-19 | Removed -O2. | John MacFarlane | 1 | -12/+12 | |
The benchmark differences between -O2 and the default were so slight that it's not worth it. (Measured with ghc 7.4.) | |||||
2013-01-19 | Removed unneeded -dno-debug-output from ghc-options | John MacFarlane | 1 | -8/+8 | |
2013-01-19 | Removed MakeManPages from cabal extra-files. | John MacFarlane | 1 | -1/+0 | |
2013-01-09 | Added Attr field to Header. | John MacFarlane | 1 | -0/+1 | |
Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers. | |||||
2013-01-02 | Fixed test suite to use Diff 0.2 API. | John MacFarlane | 1 | -1/+1 | |
2012-12-31 | Fixed bytestring upperbounds (0.11, not 1.0). | John MacFarlane | 1 | -3/+3 | |
2012-12-30 | Require file-embed >= 0.0.4.7. | John MacFarlane | 1 | -1/+1 | |
This fixes a bug with embedDir on Windows: previously forward slashes were used as path separators. | |||||
2012-12-29 | Moved all data files and templates to data/. | John MacFarlane | 1 | -37/+41 | |
2012-12-29 | Data files changes. | John MacFarlane | 1 | -0/+7 | |
* Added `embed_data_files` flag. (not yet used) * Shared no longer exports `findDataFile`. * `readDataFile` now returns a strict bytestring. * Shared now exports `readDataFileUTF8` which returns a string like the old `readDataFile`. * Rewrote modules to use new data file functions and to avoid using functions from Paths_pandoc directly. | |||||
2012-12-29 | Cabal file changes. | John MacFarlane | 1 | -108/+63 | |
* Remove executable and library flags. * Expose `Text.Pandoc.XML` and `Text.Pandoc.Biblio`. * Depend on pandoc library in executable, so we don't recompile everything. * Move pandoc.hs from src/ to . | |||||
2012-11-04 | EPUB writer: Rationalized templates. | John MacFarlane | 1 | -1/+1 | |
* Previously there were three different templates involved in epub production. There is now just one template, default.epub or default.epub3. * It can now be overridden using `--template`, just like other templates. | |||||
2012-11-04 | EPUB: removed need for separate epub-titlepage template. | John MacFarlane | 1 | -1/+1 | |
The titlepage stuff is now folded into the epub-page template. A titlepage variable selects it. | |||||
2012-11-04 | EPUB writer: Removed need for separate epub-coverpage template. | John MacFarlane | 1 | -1/+0 | |
The standard epub-page template is now used. | |||||
2012-11-04 | Added epub3 to cabal description | John MacFarlane | 1 | -1/+1 | |
2012-10-28 | Removed citationSuppressParens. | John MacFarlane | 1 | -1/+1 | |
Makefile: Use citeproc-0.3.6 release. | |||||
2012-10-21 | Bumped version bound for template-haskell. | John MacFarlane | 1 | -1/+1 | |
2012-10-15 | Moved man page creation out of Setup.hs. | John MacFarlane | 1 | -0/+13 | |
* MakeManPage.hs has been transformed into man/make-pandoc-man-pages.hs. * There is now a cabal stanza for this, so the dependencies are handled by cabal. * Special treatment in Setup.hs ensures that this never gets installed; it is built and used to create the man pages. * Setup.hs cleaned up. | |||||
2012-10-13 | Don't expose Text.Pandoc.Biblio. | John MacFarlane | 1 | -1/+1 | |
It's no longer necessary for library users, as bibliography processing occurs in readMarkdown and readLaTeX. | |||||
2012-09-30 | Bumped versions of json and base64-bytestring dependencies. | John MacFarlane | 1 | -5/+5 | |
Thanks to Dirk Ullirch. | |||||
2012-09-30 | Make blaze_html_0_5 default to True. | John MacFarlane | 1 | -1/+1 | |
2012-09-25 | Removed need for utf8-string package. | John MacFarlane | 1 | -4/+4 | |
* Depend on text. * Expose Text.Pandoc.UTF8. * Text.Pandoc.UTF8 now exports toString, fromString, toStringLazy, fromStringLazy. * These are used instead of the old utf8-string functions. | |||||
2012-09-23 | Added base dependencies for test suite. | John MacFarlane | 1 | -1/+3 | |
2012-09-23 | Require base >= 4.2 (i.e. GHC 6.12). | John MacFarlane | 1 | -19/+9 | |
2012-09-21 | Bump network upper bound to <2.5 | Ben Gamari | 1 | -2/+2 | |
network 2.4 is now on hackage |