Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-12-16 | MANUAL/README: Fixed broken links (#3316) | ickc | 2 | -6/+6 | |
MANUAL/README: "groff man" links to groff_man rather than groff MANUAL/README: Word docx link to wikipedia | |||||
2016-12-16 | LaTeX writer: allow tables with empty cells to count as "plain." | John MacFarlane | 1 | -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-16 | MANUAL: note that --wrap=auto does not work in HTML output. | John MacFarlane | 1 | -0/+1 | |
2016-12-16 | MANUAL: Default --columns width is 72, not 80. | John MacFarlane | 1 | -1/+1 | |
2016-12-14 | CONTRIBUTING: Describe labels currently used in issue tracker | Albert Krewinkel | 1 | -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-13 | Test case for issue #3223 (#3308) | hubertp-lshift | 3 | -0/+6 | |
2016-12-13 | Test case for bug 2752 (#3306) | hubertp-lshift | 3 | -0/+2 | |
2016-12-13 | Speed up Travis (#3304) | ickc | 1 | -7/+12 | |
* travis: fast_finish * travis: cabal use `-j` whenever appropriate * travis: remove stack nightly in osx build to speed up | |||||
2016-12-13 | Docx reader: Empty header should be list of lists. | Jesse Rosenthal | 3 | -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-11 | Fix display math with --webtex in markdown output. | John MacFarlane | 1 | -9/+13 | |
Closes #3298. | |||||
2016-12-10 | Moved make_osx_package.sh to osx/ directory. | John MacFarlane | 2 | -1/+1 | |
2016-12-10 | Updated MANUAL date and man page. | John MacFarlane | 2 | -30/+43 | |
2016-12-10 | Updated changelog. | John MacFarlane | 1 | -0/+65 | |
2016-12-10 | Version to 1.19.1 | John MacFarlane | 1 | -1/+1 | |
2016-12-09 | We no longer need the MathMLInHTML.js shim from 2004! | John MacFarlane | 3 | -74/+0 | |
2016-12-08 | Docx reader: Ensure one-row tables don't have header. | Jesse Rosenthal | 4 | -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-08 | Small tweaks to release checklist. | John MacFarlane | 1 | -3/+3 | |
2016-12-08 | Makefile: use stack. | John MacFarlane | 1 | -22/+6 | |
2016-12-08 | Set PANDOC_VERSION environment variable for filters. | John MacFarlane | 1 | -2/+4 | |
Closes #2640. | |||||
2016-12-08 | Removed debug trace from HTML reader. | John MacFarlane | 1 | -2/+1 | |
2016-12-07 | Really fixed bash completion this time! | John MacFarlane | 1 | -1/+1 | |
Closes #2749. | |||||
2016-12-07 | Improved bash-completion for filenames with spaces. | John MacFarlane | 1 | -1/+1 | |
2016-12-07 | Fixed bash completion for filenames with spaces. | John MacFarlane | 2 | -6/+23 | |
Closes #2749. | |||||
2016-12-07 | MANUAL: better docs on how to create a custom reference.docx. | John MacFarlane | 1 | -8/+24 | |
2016-12-07 | HTML reader: Understand `style=width:` as well as `width` in `col`. | John MacFarlane | 1 | -2/+7 | |
Closes #3286. | |||||
2016-12-07 | Fixed tests with dynamic linking. | John MacFarlane | 1 | -3/+12 | |
Closes #2709. | |||||
2016-12-07 | RST reader: print warnings when keys, substitition, notes not found. | John MacFarlane | 1 | -6/+26 | |
Previously the parsers failed and we got raw text. Now we get a link with an empty URL, or empty inlines in the case of a note or substitution. | |||||
2016-12-07 | RST reader: fix hyperlink aliases. | John MacFarlane | 3 | -2/+13 | |
`link <google_>`_ .. _google: https://google.com is really a reference link. Closes #3283. | |||||
2016-12-06 | Fixed some bad regressions in HTML table parser. | John MacFarlane | 1 | -3/+3 | |
This regression leads to the introduction of empty rows in some circumstances. Closes #3280. | |||||
2016-12-05 | Man writer: Ensure that periods are escaped at beginning of line. | John MacFarlane | 1 | -4/+2 | |
Closes #3270. | |||||
2016-12-05 | Pretty: Added `afterBreak`. | John MacFarlane | 1 | -0/+15 | |
This makes it possible to insert escape codes for content that needs escaping at the beginning of a line. | |||||
2016-12-04 | LaTeX writer: Fix unnumbered headers when used with `--top-level` | Albert Krewinkel | 2 | -1/+23 | |
Fix interaction of top-level divisions `part` or `chapter` with unnumbered headers when emitting LaTeX. Headers are ensured to be written using stared commands (like `\subsection*{}`). Fixes: #3272 | |||||
2016-12-04 | LaTeX template: use correct separator for pdfkeywords. | John MacFarlane | 1 | -7/+7 | |
Needs a comma not a semicolon. Thanks to Wandmalfarbe. | |||||
2016-12-04 | Markdown writer: Fixed incorrect word wrapping. | John MacFarlane | 4 | -7/+7 | |
Previously pandoc would sometimes wrap lines too early due to this bug. Closes #3277. | |||||
2016-12-03 | Minor spelling typos in the manual (#3273) | Anthony Geoghegan | 1 | -23/+23 | |
* Fix spelling typos: * hightlight * respecitively * codeblock – inconsistent with rest of document using “code block” * Use consistent case for proper nouns. For example: “ASCII”, “Unicode”, “Latin”, “JavaScript”, “CSS”. | |||||
2016-12-01 | More cosmetic changes to changelog. | John MacFarlane | 1 | -131/+130 | |
2016-12-01 | Reformatting changelog. | John MacFarlane | 1 | -217/+217 | |
2016-11-30 | Update date in manual and man page. | John MacFarlane | 2 | -20/+40 | |
2016-11-30 | Updated changelog. | John MacFarlane | 1 | -6/+14 | |
2016-11-30 | Use pandoc-citeproc 0.10.3 release in stack.yamls for binary pkgs. | John MacFarlane | 3 | -9/+5 | |
2016-11-30 | Options: Removed writerStandalone, made writerTemplate a Maybe. | John MacFarlane | 33 | -133/+117 | |
Previously setting writerStandalone = True did nothing unless a template was provided in writerTemplate. Now a fragment will be generated if writerTemplate is Nothing; otherwise, the specified template will be used and standalone output generated. [API change] | |||||
2016-11-30 | Updated changelog. | John MacFarlane | 1 | -0/+4 | |
2016-11-30 | Removed unused import. | John MacFarlane | 1 | -1/+0 | |
2016-11-30 | travis: use language generic (#3267) | ickc | 1 | -2/+2 | |
2016-11-30 | stack.yaml - use texmath 0.9 release. | John MacFarlane | 2 | -6/+2 | |
2016-11-30 | Use new module from texmath to lookup MS font codepoints. | John MacFarlane | 6 | -245/+9 | |
+ Removed Text.Pandoc.Readers.Docx.Fonts + Moved its code to texmath; we now use (from texmath 0.9) Text.TeXMath.Unicode.Fonts + Use texmath 0.9 (currently from git). + Updated epub tests because texmath now handles more mathml. | |||||
2016-11-27 | Updated changelog. | John MacFarlane | 1 | -5/+17 | |
2016-11-27 | Shared.fetchItem: Better handling of protocol-relative URL. | John MacFarlane | 1 | -0/+9 | |
If URL starts with `//` and there is no "base URL" (as there would be if a URL were used on the command line), then default to http:. Closes #2635. | |||||
2016-11-27 | Updated renderHtml import in HTML writer to avoid deprecated function. | John MacFarlane | 1 | -2/+1 | |
2016-11-27 | Refactor top-level division selection (#3261) | Albert Krewinkel | 9 | -64/+111 | |
The "default" option is no longer represented as `Nothing` but via a new type constructor, making the `Maybe` wrapper superfluous. The default behavior of using heuristics can now be enabled explicitly by setting `--top-level-division=default`. API change (`Text.Pandoc.Options`): The `Division` type was renamed to `TopLevelDivision`. The `Section`, `Chapter`, and `Part` constructors were renamed to `TopLevelSection`, `TopLevelChapter`, and `TopLevelPart`, respectively. An additional `TopLevelDefault` constructor was added, which is now also the new default value of the `writerTopLevelDivision` field in `WriterOptions`. |