Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |||||
2012-09-21 | Bump directory upper bound to <1.3 | Ben Gamari | 1 | -3/+3 | |
directory-1.2 is in ghc 7.6 | |||||
2012-09-21 | Bump containers upper bound to <0.6 | Ben Gamari | 1 | -3/+3 | |
Since containers 0.5 is in the wild as of ghc 7.6 | |||||
2012-09-12 | Added basic mediawiki reader. | John MacFarlane | 1 | -4/+8 | |
Text.Pandoc.Readers.MediaWiki module, tests/mediawiki-reader.{txt,native}. | |||||
2012-08-08 | Changes to literate haskell options. | John MacFarlane | 1 | -0/+1 | |
- Removed writerLiterateHaskell from WriterOptions. - Removed readerLiterateHaskell from ReaderOptions. - Added Ext_literate_haskell to Extensions. Test for this instead of the above. - Removed failUnlessLHS from Shared. Note: At this point, +lhs and .lhs extension no longer has any effect. Need to fix. | |||||
2012-08-07 | Require pandoc-types 1.10.*. | John MacFarlane | 1 | -3/+3 | |
2012-07-26 | Revert "Require Cabal 0.14." | John MacFarlane | 1 | -1/+1 | |
This reverts commit f6cc63de41f3b56d6c913981a85380b146719258. Older versions of cabal supposedly just ignore the benchmark stanza. | |||||
2012-07-26 | Require Cabal 0.14. | John MacFarlane | 1 | -1/+1 | |
2012-07-26 | Bump version to 1.10. | John MacFarlane | 1 | -1/+1 | |
2012-07-26 | Integrated test suite with cabal. | John MacFarlane | 1 | -10/+4 | |
To run tests, configure with --enable-tests, then 'cabal test'. You can specify particular tests using --test-options='-t markdown'. No output is shown unless tests fail. In the future, we can move to the detailed-1.0 interface. | |||||
2012-07-26 | Integrated benchmark into cabal. | John MacFarlane | 1 | -2/+19 | |
Can now do: cabal configure --enable-benchmarks && cabal build cabal bench --benchmark-option='markdown' --benchmark-option='-s 20' | |||||
2012-07-26 | Moved tests to tests/, modified cabal file so lib isn't recompiled. | John MacFarlane | 1 | -72/+35 | |
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 | |