aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-01-17fix internal link in INSTALL.mdMauro Bieg1-1/+1
2017-01-15Clarify that blank space is needed around footnotes.John MacFarlane1-1/+3
Closes #3352.
2017-01-15Rearrange and extend badges in README (#3354)Albert Krewinkel1-4/+6
* Reorganize badges to get a more harmonic look * Add homebrew badge * Add badge for pandoc-discuss google group
2017-01-13Fixed typo (#3351)Alexey Rogachev1-1/+1
2017-01-10Allow vector 0.12.0.0.John MacFarlane1-1/+1
2017-01-10LaTeX template: Add hyphen option to url package.John MacFarlane5-7/+11
2017-01-08Fixed -f markdown_github-hard_line_breaks+escaped_line_breaks.John MacFarlane1-0/+1
Previously this did not properly enable escaped line breaks. Closes #3341.
2017-01-07Added instructions for manual install from oxs, win packages.John MacFarlane1-0/+22
2017-01-06Remove pipe char irking the haddock coverage toolAlbert Krewinkel1-1/+1
Haddock documentation strings must be associated with functions. Remove pipe char from a comment that was moved into a `do` block in `Readers/Org/Inlines.hs`.
2017-01-06Org reader: accept org-ref citations followed by commasAlbert Krewinkel2-15/+28
Bugfix for an issue which, whenever the citation was immediately followed by a comma, prevented correct parsing of org-ref citations.
2017-01-05Org reader: ensure emphasis markup can be nestedAlbert Krewinkel2-0/+7
Nested emphasis markup (e.g. `/*strong and emphasized*/`) was interpreted incorrectly in that the inner markup was not recognized.
2017-01-05MediaWiki reader: Fix quotation mark parsing (#3336)tgkokk1-6/+3
Change MediaWiki reader's behavior when the smart option is parsed to match other readers' behavior. Fix #2012.
2017-01-03LaTeX template: allow passing `microtypeoptions` to microtype.John MacFarlane6-11/+14
Thanks to Vaclav Haisman.
2017-01-02Allow aeson 1.1.John MacFarlane1-2/+2
2017-01-01Indent code on the installation page. (#3335)Bheesham Persaud1-5/+5
Previously, not all code on the installation page was highlighted/wrapped in code blocks due to incorrect indentation.
2016-12-31Add '@*' usage (#3333)John Muccigrosso1-0/+8
* Add '@*' usage Added to nocite section to add the wildcard functionality. * Restoring accented characters. Removed trailing whitespace in new text too. * Removing unneeded single quotes.
2016-12-30Updated docbook5 writer test for new template.John MacFarlane1-1/+3
2016-12-30Travis: fix false positives and speed up dist build by avoiding tests.John MacFarlane1-7/+8
2016-12-30docbook5template: fix namespace declarations (Mauro Bieg).John MacFarlane1-7/+7
2016-12-30DocBook5 writer: make id attribute xml:id, fixes #3329 (#3330)Mauro Bieg2-32/+35
2016-12-24HTML writer: don't process pars with empty RawInline, fixes #1040 (#3327)Mauro Bieg1-3/+8
2016-12-24Travis: add path to happy to path.John MacFarlane1-1/+1
2016-12-24markdown reader: disallow space between inline code and attributes (#3326)Mauro Bieg2-3/+4
closes #3323
2016-12-23Added happy to travis deb pkgs.John MacFarlane1-3/+3
2016-12-23Updated windows stack.yaml.John MacFarlane1-1/+2
2016-12-23Updates to use skylighting rather than highlighting-kate.John MacFarlane8-30/+44
So far this just reproduces capacity. Later we'll be able to add features like warning messages, dynamic loading of xml syntax definitions, and dynamic loading of themes.
2016-12-23Allow directory 1.3. Closes #3325.John MacFarlane1-3/+3
2016-12-21Org writer: prefix footnote numbers with `fn:`Albert Krewinkel2-21/+21
Unprefixed numbers where used by older org-mode versions, but are no longer supported.
2016-12-16MANUAL/README: Fixed broken links (#3316)ickc2-6/+6
MANUAL/README: "groff man" links to groff_man rather than groff MANUAL/README: Word docx link to wikipedia
2016-12-16LaTeX writer: allow tables with empty cells to count as "plain."John MacFarlane1-0/+1
This addresses a problem of too-wide tables when empty cells are used. Thanks to Joost Kremers for reporting the issue.
2016-12-16MANUAL: note that --wrap=auto does not work in HTML output.John MacFarlane1-0/+1
2016-12-16MANUAL: Default --columns width is 72, not 80.John MacFarlane1-1/+1
2016-12-14CONTRIBUTING: Describe labels currently used in issue trackerAlbert Krewinkel1-17/+25
The labels have changed over time, the list of labels is updated to reflect the current set of labels used in the issue tracker.
2016-12-13Test case for issue #3223 (#3308)hubertp-lshift3-0/+6
2016-12-13Test case for bug 2752 (#3306)hubertp-lshift3-0/+2
2016-12-13Speed up Travis (#3304)ickc1-7/+12
* travis: fast_finish * travis: cabal use `-j` whenever appropriate * travis: remove stack nightly in osx build to speed up
2016-12-13Docx reader: Empty header should be list of lists.Jesse Rosenthal3-12/+18
In the past, the docx reader wrote an empty header as an empty list. It should have the same width as a row (and be filled with empty cells). (Note that I've reordered the code here slightly to get rid of a call to `head`. It wasn't unsafe because it tested for null, but it was a bit of a smell.)
2016-12-11Fix display math with --webtex in markdown output.John MacFarlane1-9/+13
Closes #3298.
2016-12-10Moved make_osx_package.sh to osx/ directory.John MacFarlane2-1/+1
2016-12-10Updated MANUAL date and man page.John MacFarlane2-30/+43
2016-12-10Updated changelog.John MacFarlane1-0/+65
2016-12-10Version to 1.19.1John MacFarlane1-1/+1
2016-12-09We no longer need the MathMLInHTML.js shim from 2004!John MacFarlane3-74/+0
2016-12-08Docx reader: Ensure one-row tables don't have header.Jesse Rosenthal4-1/+11
Tables in MS Word are set by default to have special first-row formatting, which pandoc uses to determine whether or not they have a header. This means that one-row tables will, by default, have only a header -- which we imagine is not what people want. This change ensures that a one-row table is not understood to be a header only. Note that this means that it is impossible to produce a header-only table from docx, even though it is legal pandoc. But we believe that in nearly all cases, it will be an accidental (and unwelcome) result Closes #3285.
2016-12-08Small tweaks to release checklist.John MacFarlane1-3/+3
2016-12-08Makefile: use stack.John MacFarlane1-22/+6
2016-12-08Set PANDOC_VERSION environment variable for filters.John MacFarlane1-2/+4
Closes #2640.
2016-12-08Removed debug trace from HTML reader.John MacFarlane1-2/+1
2016-12-07Really fixed bash completion this time!John MacFarlane1-1/+1
Closes #2749.
2016-12-07Improved bash-completion for filenames with spaces.John MacFarlane1-1/+1