aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-01-13Updated README date.John MacFarlane1-1/+1
2016-01-12Version to 1.16.0.2, updated changelog.John MacFarlane3-2/+10
2016-01-11Depend on deepseq rather than deepseq-generics.John MacFarlane2-2/+2
See fpco/stackage#1096.
2016-01-11Fixed regression in latex smart quote parsing.John MacFarlane1-4/+5
Closes #2645. In cases where a match was not found for a quote, everything from the open quote to the end of the paragraph was being dropped.
2016-01-10Release checklist: added note on regenerating Hackage docs.John MacFarlane1-0/+3
2016-01-10Regenerated man page.John MacFarlane1-1/+1
2016-01-10README - changed date.John MacFarlane1-1/+1
2016-01-10osx package fixes: correct version, allow installation to any drive.John MacFarlane2-4/+4
2016-01-09Fixed typo in deb/stack.yaml.John MacFarlane1-1/+1
2016-01-09Updated stack.yaml.John MacFarlane2-3/+5
2016-01-09Updated changelog.John MacFarlane1-0/+57
2016-01-09Version bump to 1.16.0.1John MacFarlane1-1/+1
2016-01-09LaTeX writer: restore old treatment of Span.John MacFarlane2-18/+16
A Span is rendered with surrounding {braces}. This was a regression in 1.16. Closes #2624.
2016-01-08Fixed shadowing warning.John MacFarlane1-1/+1
2016-01-08Added some entity tests in Markdown reader tests.John MacFarlane1-0/+9
2016-01-08Work around tagsoup bug - not allowing uppercase x in hex entities.John MacFarlane2-0/+2
Issue submitted at tagsoup.
2016-01-08Entity handling fixes:John MacFarlane2-3/+10
- Text.Pandoc.XML.fromEntities: handle entities without a semicolon. Always lookup character references with the trailing ';', even if it wasn't present. And never add it when looking up numerical entities. (This is what tagsoup seems to require.) - Text.Pandoc.Parsing.characterReference: Always lookup character references with the trailing ';', and leave off the ';' when looking up numerical entities. This fixes a regression for e.g. `⟨`.
2016-01-07Merge pull request #2632 from matt-e/fix-stack-buildJohn MacFarlane2-2/+2
Fix typo in stack build files
2016-01-07Update stack.yamlMatthew Eddey1-1/+1
Another typo?
2016-01-07Update stack.full.yamlMatthew Eddey1-1/+1
2016-01-07stack.yaml - use older aeson to avoid excessive memory use on compile.John MacFarlane2-0/+4
2016-01-07deb/stack.yaml - use older aeson to avoid excessive memory use in compile.John MacFarlane1-1/+3
With aeson 0.10 I was getting an out of memory error on a 2GB Ubuntu 64-bit VM.
2016-01-07deb/Makefile - make DEBPKGVER work.John MacFarlane1-1/+1
2016-01-07debpkg - back to lts-3.20.John MacFarlane1-1/+1
We get memory exhaustion on lts-4.0. My guess is that it's due to aeson-0.10.
2016-01-07More deb packaging tweaks.John MacFarlane2-3/+1
2016-01-07Minor tweak in how make_deb.sh is called.John MacFarlane1-1/+1
2016-01-07deb/make_deb.sh - removed 'stack clean'.John MacFarlane1-2/+1
2016-01-07Merge pull request #2629 from tarleb/org-noexport-fixJohn MacFarlane2-2/+14
Fix function dropping subtrees tagged :noexport:
2016-01-07make_deb.sh - use --install-ghc flag instead of stack setup.John MacFarlane2-4/+3
2016-01-07deb pkg generation improvements.John MacFarlane4-5/+6
Allow setting DEBPKGVER. Bump to stack lts-4.0. Make output verbose.
2016-01-07deb/Makefile: Renamed COMMIT -> TREEJohn MacFarlane1-2/+2
2016-01-07make_deb.sh - added --stack-setup-yaml.John MacFarlane1-1/+1
2016-01-07Upgrade hsb2hs.yaml lts resolver.John MacFarlane1-1/+1
2016-01-07Fix function dropping subtrees tagged :noexport:Albert Krewinkel2-2/+14
Continue scanning for comment subtrees beyond only the first block. Note to self: when writing an recursive function, don't forget to, you know, actually recurse. Shout to @mrvdb for noticing this. This fixes #2628.
2016-01-07Markdown reader: renormalize table column widths if they exceed 100%.John MacFarlane1-1/+6
Closes #2626.
2016-01-06Improved default template lookup for custom lua scripts.John MacFarlane1-19/+17
Previously, if you tried to do `pandoc -s -t /path/to/lua/script.lua`, pandoc would look for the template in `~/.pandoc/templates/default./path/to/lua/script.lua`. With this change it will look in the more reasonable `~/.pandoc/templates/default.script.lua`. This makes it possible to store default templates for custom writers. Closes #2625.
2016-01-06stack.yaml, stack.full.yaml - use lts-4.0 resolver.John MacFarlane2-2/+2
2016-01-06Revert "Make file globbing work on windows."John MacFarlane2-11/+1
This reverts commit 363ecfebc32c6fe15d81634422e8607847f588fb.
2016-01-06Make file globbing work on windows.John MacFarlane2-1/+11
Windows cmd doesn't expand wildcards; the application has to do this. So on windows we use 'glob' to expand.
2016-01-06stack.yaml: bump pandoc-types version to 1.16.0.1.John MacFarlane1-1/+1
2016-01-05Merge pull request #2622 from conklech/ignore-stackJohn MacFarlane1-0/+1
Add .stack-work to gitignore
2016-01-05Add .stack-work to gitignoreChristian Conkle1-0/+1
The .stack-work directory is analogous to a cabal sandbox; it comprises temporary build artifacts.
2016-01-05RST, Markdown writers: Fixed rendering of grid tables with blank rows.John MacFarlane2-2/+2
Closes #2615.
2016-01-05Go back to testing with ghc 7.10.2.John MacFarlane2-4/+4
Avoids the dreaded "the version of cabal being used has changed" error. https://www.reddit.com/r/haskell/comments/3f4bgr/the_version_of_cabal_being_used_has_changed/
2016-01-05Regenerated .travis.yml to include 7.10.3.John MacFarlane1-0/+3
2016-01-05Added 7.10.3 to make_travis_yml.hs known versions.John MacFarlane1-1/+1
2016-01-05Updated .travis.yml, added ghc 7.10.3 to tested-with.John MacFarlane2-25/+73
2016-01-04Fixed v1.16 reversion with --latex-engine.John MacFarlane1-2/+2
In 1.16 --latex-engine raises an error if a full path is given. This commit fixes this reversion. Closes #2618.
2016-01-04windows/stack.yaml - use local pandoc-citeproc.John MacFarlane1-1/+1
I'm not sure why this is needed, but it is. Otherwise the build fails.
2016-01-03Updated binary package stack.yamls to ensure pandoc-citeproc...John MacFarlane3-3/+3
is built with embed_data_files. This fixes a problem with the original 1.16 binary packages.