Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-01-25 | anyLine: Set position properly. | John MacFarlane | 1 | -0/+3 | |
2013-01-25 | Makefile: Don't enable tests in 'make prof'. | John MacFarlane | 1 | -1/+1 | |
2013-01-25 | Markdown reader: More efficient version of scanForPipe. | John MacFarlane | 1 | -1/+5 | |
2013-01-25 | Parsing: Much faster new version of anyLine. | John MacFarlane | 1 | -1/+8 | |
Not only faster but uses less memory. | |||||
2013-01-25 | Increased ansi-terminal upper bound. | John MacFarlane | 1 | -1/+1 | |
2013-01-25 | .gitmodule: Use https rather than git URL. | John MacFarlane | 1 | -1/+1 | |
iThis helps people behind firewalls. | |||||
2013-01-25 | make-pandoc-man-pages: CPP macros to import right time module. | John MacFarlane | 1 | -1/+4 | |
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-25 | Fixed Makefile PHONY line. | John MacFarlane | 1 | -1/+1 | |
2013-01-23 | Updated changelog. | John MacFarlane | 1 | -0/+53 | |
2013-01-23 | Version bump to 1.10.0.5. | John MacFarlane | 1 | -1/+1 | |
2013-01-23 | Makefile: Added sdist. | John MacFarlane | 1 | -1/+5 | |
2013-01-23 | Use hsb2hs preprocessor instead of TH for embed_data_files. | John MacFarlane | 4 | -9/+23 | |
This should work on Windows, unlike the TH solution with file-embed. | |||||
2013-01-23 | Eliminated use of TH in test suite. | John MacFarlane | 8 | -72/+43 | |
2013-01-23 | Added Text.Pandoc.Data (non-exported) if embed_data_files selected. | John MacFarlane | 3 | -7/+12 | |
This module just exports the association list of embedded data files, which is used by Shared. | |||||
2013-01-23 | Fixed regressions in fenced code blocks. | John MacFarlane | 1 | -16/+6 | |
* Tilde code fences can again take bare language. So ~~~ haskell is okay, not just ~~~ {.haskell} * Backtick code blocks can take the bracketed attributes. * Backtick code blocks don't require a language. * Consolidated code for the two kinds of fenced code blocks. Closes #722. | |||||
2013-01-23 | Merge branch 'master' of github.com:jgm/pandoc | John MacFarlane | 2 | -6/+13 | |
2013-01-22 | Changes to make-windows-installer.bat. | John MacFarlane | 1 | -2/+4 | |
* Exit batch file if any of the cabal-dev installs fail. * There's no longer any need to reinstall highlighting-kate. * Don't start with a 'cabal update'; leave that to the user. | |||||
2013-01-22 | README: Split up documentation of table extensions. | John MacFarlane | 1 | -4/+9 | |
2013-01-22 | Merge branch 'master' of github.com:jgm/pandoc | John MacFarlane | 4 | -4/+8 | |
2013-01-22 | Another fix to the CPP macro in EPUB writer. | John MacFarlane | 1 | -1/+1 | |
2013-01-22 | windowns installer: Removed --disable-library-for-ghci. | John MacFarlane | 1 | -1/+1 | |
2013-01-22 | Fixed MIN_VERSION - need to sub _ for - in blaze-html. | John MacFarlane | 1 | -1/+1 | |
2013-01-22 | Force reinstall for windows package. | John MacFarlane | 1 | -1/+1 | |
2013-01-22 | Corrected name of `blank_before_blockquote` in README. | John MacFarlane | 1 | -1/+1 | |
Closes #718. | |||||
2013-01-21 | Markdown reader: Try lhsCodeBlock before rawTeXBlock. | John MacFarlane | 1 | -1/+1 | |
Otherwise \begin{code}...\end{code} isn't handled properly in markdown+lhs. Thanks to Daniel Miot for noticing the bug and suggesting the fix. | |||||
2013-01-21 | Merge pull request #717 from juhp/patch-1 | John MacFarlane | 1 | -0/+4 | |
EPUB: condition Blaze Utf8 module name import on blaze-html version | |||||
2013-01-22 | EPUB: condition Blaze Utf8 module name import on blaze-html version | Jens Petersen | 1 | -0/+4 | |
blaze-html/blaze-markup-0.5 has Text.Blaze.Html.Renderer.Utf8 whereas blaze-html-0.4 has Text.Blaze.Renderer.Utf8. So this needs to be conditional on the version for pandoc still be with blaze-html-0.4.x | |||||
2013-01-21 | Updated tested-with in cabal file. | John MacFarlane | 1 | -1/+1 | |
2013-01-21 | LaTeX template: Use `\urlstyle{same}` to avoid monospace URLs. | John MacFarlane | 4 | -7/+8 | |
2013-01-21 | Use proportional font for email autolinks with obfuscation. | John MacFarlane | 2 | -2/+2 | |
Closes #714. | |||||
2013-01-21 | Markdown reader: Fixed bug with headerless grid tables. | John MacFarlane | 3 | -3/+93 | |
The 1.10 code assumed that each table header cell contains exactly one block. That failed for headerless tables (0) and also for tables with multiple blocks in a header cell. The code is fixed and tests provided. Thanks to Andrew Lee for pointing out the bug. | |||||
2013-01-20 | Fixed bug in uri parser. | John MacFarlane | 1 | -1/+1 | |
The bug prevented an autolink at the end of a string (e.g. at the end of a line block line) from counting as a link. Closes #711. | |||||
2013-01-20 | make-windows-installer: force reinstall of citeproc-hs and h-k. | John MacFarlane | 1 | -2/+2 | |
2013-01-20 | Version bump to 1.10.0.4. | John MacFarlane | 1 | -1/+1 | |
2013-01-20 | Updated changelog. | John MacFarlane | 1 | -0/+4 | |
2013-01-20 | Fixed bug with escaped % in LaTeX reader. | John MacFarlane | 3 | -1/+9 | |
Also added tests. Closes #710. | |||||
2013-01-20 | Bump version to 1.10.0.3; added further missing fb2 tests. | John MacFarlane | 2 | -2/+13 | |
Updated changelog. | |||||
2013-01-20 | Updated changelog. | John MacFarlane | 1 | -0/+4 | |
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 | Updated changelog. | John MacFarlane | 1 | -0/+4 | |
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 | Revert "Temporarily removed travis build instructions." | John MacFarlane | 1 | -0/+0 | |
This reverts commit bba08126b4e7912ca533dbc04ef0a5f240a1bd1e. | |||||
2013-01-19 | Updated copyright date in pandoc.cabal. | John MacFarlane | 1 | -1/+1 | |
2013-01-19 | Updated changelog. | John MacFarlane | 1 | -0/+4 | |
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 | |