Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-03 | Merge pull request #2569 from rgaiacs/add-highlighting-to-gap | John MacFarlane | 1 | -1/+2 | |
Add highlighting support to GAP | |||||
2015-12-03 | Add support to GAP | Raniere Silva | 1 | -1/+2 | |
2015-12-02 | Merge pull request #2568 from mb21/readers-images | John MacFarlane | 2 | -3/+10 | |
Textile Reader: image attributes | |||||
2015-12-03 | Textile Reader: image attributes | mb21 | 1 | -2/+9 | |
closes #2515 | |||||
2015-12-02 | Parse CSS that doesn't contain the optional semicolon | mb21 | 1 | -1/+1 | |
2015-12-01 | Use lts-3.16. | John MacFarlane | 5 | -5/+5 | |
2015-12-01 | Docx writer: better handling of PDF images. | John MacFarlane | 1 | -8/+2 | |
Previously we tried to get the image size from the image even if an explicit size was specified. Since we still can't get image size for PDFs, this made it impossible to use PDF images in docx. Now we don't try to get the image size when a size is already explicitly specified. | |||||
2015-11-28 | stack.full.yaml - use local versions of everything. | John MacFarlane | 2 | -9/+6 | |
2015-11-24 | Markdown writer: use raw HTML for link/image attributes when | John MacFarlane | 1 | -2/+12 | |
the `link_attributes` extension is unset and `raw_html` is set. Closes #2554. | |||||
2015-11-24 | s/mb21/Mauro Bieg/ in README contributor list and changelog. | John MacFarlane | 2 | -18/+20 | |
2015-11-24 | Added stack.full.yaml to build pandoc-citeproc as well. | John MacFarlane | 1 | -0/+22 | |
2015-11-24 | Added bodyless pipe table test case. | John MacFarlane | 2 | -1/+11 | |
See #2556. | |||||
2015-11-24 | Updated README for new pipe table behavior. | John MacFarlane | 1 | -4/+4 | |
2015-11-24 | Allow pipe tables with no body rows. | John MacFarlane | 1 | -2/+3 | |
Previously this raised a runtime error. Closes #2556. | |||||
2015-11-24 | LaTeX reader: Improved smart quote parsing. | John MacFarlane | 1 | -14/+13 | |
This fixes redering of unmatched quotes. Closes #2555. | |||||
2015-11-24 | Improved fetchItem so that C:/Blah/Blah.jpg isn't treated as URL. | John MacFarlane | 1 | -6/+19 | |
The Haskell URI parsing routines will accept "C:" as a scheme, so we rule that out manually. This helps with `--self-contained` and absolute Windows paths. See http://stackoverflow.com/questions/33899126/rchart-in-markdown-doesnt-render-due-to-invalidurlexception-from-pandoc | |||||
2015-11-23 | LaTeX reader: Use curly quotes for unmatched `. | John MacFarlane | 2 | -2/+9 | |
Partially addresses #2555. Note that there's still a problem with the code sample given. | |||||
2015-11-23 | Beamer writer: mark frame as fragile when it contains verbatim. | John MacFarlane | 1 | -5/+1 | |
Closes #1613. | |||||
2015-11-23 | AsciiDoc writer: Fixed code blocks. | John MacFarlane | 2 | -27/+26 | |
Closes #1861. | |||||
2015-11-23 | Define a `meta-json` variable for all writers. | John MacFarlane | 3 | -4/+10 | |
This contains a JSON version of all the metadata, in the format selected for the writer. So, for example, to get just the YAML metadata, you can run pandoc with the following custom template: $meta-json$ Closes #2019. The intent is to make it easier for static site generators and other tools to get at the metadata. | |||||
2015-11-23 | Document limitations of --self-contained. | John MacFarlane | 1 | -1/+5 | |
See #2553. | |||||
2015-11-23 | Docx Reader: Remove DummyListItem type | Jesse Rosenthal | 2 | -12/+7 | |
Change 5527465c introduced a `DummyListItem` type in Docx/Parse.hs. In retrospect, this seems like it mixes parsing and iterpretation excessively. What's *really* going on is that we have a list item without and associate level or numeric info. We can decide what to do what that in Docx.hs (treat it like a list paragraph), but the parser shouldn't make that decision. This commit makes what is going on a bit more explicit. `LevelInfo` is now a Maybe value in the `ListItem` type. If it's a Nothing, we treat it as a ListParagraph. If it's a Just, it's a normal list item. | |||||
2015-11-22 | hlint fixes | John MacFarlane | 1 | -1/+1 | |
2015-11-22 | hlint fixes | John MacFarlane | 1 | -12/+13 | |
2015-11-22 | hlint changes | John MacFarlane | 1 | -3/+1 | |
2015-11-22 | hlint fixes. | John MacFarlane | 1 | -3/+1 | |
2015-11-22 | hlint fixes. | John MacFarlane | 1 | -5/+5 | |
2015-11-22 | hlint refactorings. | John MacFarlane | 1 | -38/+34 | |
2015-11-21 | Improved Citations section of README. | John MacFarlane | 1 | -3/+10 | |
Added information about `link-citations` and a link to the pandoc-citeproc man page. Closes #2551. | |||||
2015-11-21 | Travis: only use ghc 7.10.2 for now. | John MacFarlane | 1 | -9/+9 | |
We can go back to the old cabal-based travis once pandoc-types and texmath have been released. | |||||
2015-11-21 | Travis: Use --system-ghc. | John MacFarlane | 1 | -5/+1 | |
2015-11-21 | Added sanity check in .travis.yml to diagnose problem. | John MacFarlane | 1 | -0/+4 | |
2015-11-21 | Fixed travis again. | John MacFarlane | 1 | -2/+1 | |
2015-11-21 | Fixed travis. | John MacFarlane | 1 | -1/+4 | |
2015-11-21 | Back to stack-based .travis.yml; use stack 1.8. | John MacFarlane | 1 | -44/+18 | |
2015-11-21 | Simpler travis - build pandoc, pandoc-citeproc, texmath together. | John MacFarlane | 1 | -36/+1 | |
No caching. This is temporary until we release pandoc-types and texmath. | |||||
2015-11-21 | ImageSize: use safeRead instead of readMaybe. | John MacFarlane | 1 | -2/+1 | |
readMaybe is only provided in base 4.6+. | |||||
2015-11-21 | Travis, make_travis_yml: reverted addition of 'cabal test' in tgz. | John MacFarlane | 2 | -2/+2 | |
2015-11-21 | Further travis tweaks. | John MacFarlane | 1 | -9/+9 | |
2015-11-21 | Fix travis problem. | John MacFarlane | 1 | -1/+1 | |
2015-11-21 | Fixed .travis.yml syntax. | John MacFarlane | 1 | -8/+8 | |
2015-11-21 | travis: install unreleased pandoc-types & texmath. | John MacFarlane | 1 | -0/+8 | |
2015-11-21 | Back to cabal-based .travis.yml. | John MacFarlane | 2 | -19/+72 | |
Modified make_travis_yml so that we do a 'cabal test' with the unpacked tarball. | |||||
2015-11-20 | Tweaked travis.yml. | John MacFarlane | 1 | -1/+1 | |
2015-11-20 | More travis/stack tweaks. | John MacFarlane | 1 | -2/+2 | |
2015-11-20 | Removed ./travis_long from .travis.yml. | John MacFarlane | 1 | -2/+2 | |
2015-11-20 | New stack-based .travis.yml. | John MacFarlane | 1 | -71/+18 | |
For now, at least, we need to use stack to build in travis, since we depend on unreleased packages. | |||||
2015-11-20 | Updated tests for context template changes. | John MacFarlane | 2 | -23/+18 | |
2015-11-20 | context template: use simplefonts for font loading. | John MacFarlane | 1 | -7/+7 | |
This is needed for things to work on ConTeXt stable from TeXLive 2015. Thanks to Pablo RodrÃguez. | |||||
2015-11-20 | context template: Revert use of `\setuphead` in title block. | John MacFarlane | 1 | -11/+7 | |
Thanks to Andrew Dunning and Rik Kabel. |