Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-24 | appveyor - comment out 64-bit build for now, add semicolons. | John MacFarlane | 1 | -14/+14 | |
2018-09-24 | appveyor - remove stack i386 build. | John MacFarlane | 1 | -11/+11 | |
2018-09-24 | appveyor - another attempt. | John MacFarlane | 1 | -12/+10 | |
2018-09-24 | Revert "appveyor: Try without echo "" hack." | John MacFarlane | 1 | -2/+2 | |
This reverts commit 6315e8b6c3c17424c6eaf5cc9b1c11729d7315ba. | |||||
2018-09-24 | appveyor: Try without echo "" hack. | John MacFarlane | 1 | -2/+2 | |
2018-09-24 | appveyor - fix typo. | John MacFarlane | 1 | -1/+1 | |
2018-09-24 | appveyor - use ps. | John MacFarlane | 1 | -12/+12 | |
2018-09-24 | appveyor.yml - another tweak. | John MacFarlane | 1 | -5/+6 | |
2018-09-24 | appveyor.yml - fix env variables. | John MacFarlane | 1 | -2/+2 | |
2018-09-24 | appveyor.yml - use proper windows conditional syntax. | John MacFarlane | 1 | -8/+6 | |
2018-09-24 | Fix appveyor.yaml env variable. | John MacFarlane | 1 | -1/+1 | |
2018-09-24 | stack.yamls: use latest hslua. | John MacFarlane | 3 | -0/+6 | |
2018-09-24 | appveyor.yml - try adding cabal 8.6.1.1 build. | John MacFarlane | 1 | -11/+33 | |
2018-09-24 | Use hslua v1.0.0 | Albert Krewinkel | 14 | -318/+266 | |
2018-09-24 | Merge pull request #4921 from pyssling/master | John MacFarlane | 2 | -105/+113 | |
ODT Writer: Improve table header row style handling | |||||
2018-09-24 | Merge pull request #4931 from ajscholl/master | John MacFarlane | 1 | -2/+4 | |
RTF writer: Fix build failure with ghc-8.6.1 caused by missing MonadFail instance. | |||||
2018-09-24 | RTF writer: Fix build failure with ghc-8.6.1 caused by missing MonadFail ↵ | Jonas Scholl | 1 | -2/+4 | |
instance. | |||||
2018-09-24 | Muse reader: replace inlineList with inline' | Alexander Krotov | 1 | -29/+29 | |
2018-09-24 | Muse reader: replace `optionMaybe` and `fromMaybe` with `option` | Alexander Krotov | 1 | -2/+2 | |
2018-09-23 | ODT Writer: Improve table header row style handling | Nils Carlson | 2 | -105/+113 | |
This changes the way styles for cells in the header row and normal rows are handled in ODT tables. Previously a new (but identical) style was generated for every table, specifying the style of the cells within the table. After this change there are two style definitions for table cells, one for the cells in the header row, one for all other cells. This doesn't change the actual styles, but makes post-processing changes to the table styles much simpler as it is no longer necessary to introduce new styles for header rows and there are now only two styles where there was previously one per table. | |||||
2018-09-22 | LaTeX writer: fix a use of `last` that might take empty list. | John MacFarlane | 1 | -3/+3 | |
If you ran with `--biblatex` and have an empty document (metadata but no blocks), pandoc would previously raise an error because of the use of `last` on an empty list. | |||||
2018-09-22 | Merge pull request #4927 from tie/patch-1 | John MacFarlane | 1 | -9/+9 | |
Translations/ru | |||||
2018-09-22 | Update changelog. | John MacFarlane | 1 | -0/+50 | |
2018-09-22 | Translations/ru | Ivan Trubach | 1 | -9/+9 | |
I suppose that you copy-pasted the Russian translations from babel[1] package. Actually, it has two versions — `captionsrussian@ancient` and `captionsrussian@modern`, the former contains translations for the pre-revolution (1918) orthography. [1]: http://ctan.math.utah.edu/ctan/tex-archive/macros/latex/contrib/babel-contrib/russian/russianb.ldf | |||||
2018-09-22 | Muse reader tests: more tests | Alexander Krotov | 1 | -0/+12 | |
Check that indented blocks that end in self-terminating blocks (such as block tags and verse) can be terminated by paragraphs. | |||||
2018-09-21 | Muse reader: simplify tag parsers | Alexander Krotov | 1 | -21/+19 | |
2018-09-21 | Muse reader: use isAlphaNum instead of isLetter and isDigit | Alexander Krotov | 1 | -2/+2 | |
2018-09-21 | Muse reader: do not allow code markup to be followed by digit | Alexander Krotov | 2 | -2/+6 | |
2018-09-21 | Muse reader: simplify ordered list parsing | Alexander Krotov | 1 | -11/+4 | |
2018-09-21 | Muse reader: rewrite headingStart in applicative style | Alexander Krotov | 1 | -7/+5 | |
and remove heading level limit | |||||
2018-09-21 | Muse reader: refactoring | Alexander Krotov | 1 | -18/+21 | |
2018-09-20 | Fix compiler warning. | John MacFarlane | 1 | -1/+1 | |
2018-09-21 | Muse reader: simplify <literal> tag parsers | Alexander Krotov | 1 | -17/+9 | |
2018-09-21 | Muse reader: cleanup and conversion to applicative style | Alexander Krotov | 1 | -95/+75 | |
2018-09-21 | Muse reader: simplify lchop | Alexander Krotov | 1 | -3/+2 | |
2018-09-20 | RST reader: fix bug with internal link targets. | John MacFarlane | 2 | -1/+15 | |
They were gobbling up indented content underneath. Closes #4919. | |||||
2018-09-20 | ConTeXt writer: change `\` to `/` in Windows image paths. | John MacFarlane | 1 | -1/+6 | |
We do this in the LaTeX writer, and it avoids problems. Note that `/` works as a LaTeX path separator on Windows. Closes #4918. | |||||
2018-09-19 | Markdown reader: distinguish autolinks in the AST. | John MacFarlane | 14 | -38/+73 | |
With this change, autolinks are parsed as Links with the `uri` class. (The same is true for bare links, if the `autolink_bare_uris` extension is enabled.) Email autolinks are parsed as Links with the `email` class. This allows the distinction to be represented in the URI. Formerly the `uri` class was added to autolinks by the HTML writer, but it had to guess what was an autolink and could not distinguish `[http://example.com](http://example.com)` from `<http://example.com>`. It also incorrectly recognized `[pandoc](pandoc)` as an autolink. Now the HTML writer simply passes through the `uri` attribute if it is present, but does not add anything. The Textile writer has been modified so that the `uri` class is not explicitly added for autolinks, even if it is present. Closes #4913. | |||||
2018-09-19 | Lua filter tests: produce better error on test failure | Albert Krewinkel | 1 | -2/+2 | |
2018-09-19 | Lua filter: cleanup filter execution code | Albert Krewinkel | 1 | -51/+73 | |
2018-09-19 | Muse reader: parse Text instead of String | Alexander Krotov | 1 | -3/+5 | |
Benchmark shows 7% improvement | |||||
2018-09-19 | hlint Muse reader | Alexander Krotov | 1 | -6/+5 | |
2018-09-19 | Muse reader: get rid of HTML parser dependency | Alexander Krotov | 1 | -5/+13 | |
2018-09-19 | Muse reader: use openTag and closeTag everywhere | Alexander Krotov | 1 | -4/+4 | |
2018-09-19 | Muse reader: make openTag return association list | Alexander Krotov | 1 | -5/+5 | |
2018-09-19 | Muse reader: add openTag and closeTag functions | Alexander Krotov | 1 | -18/+19 | |
2018-09-18 | Add .options class to option headers in manual. | John MacFarlane | 1 | -7/+7 | |
This will allow autogeneration of ids for particular options in the manual. | |||||
2018-09-18 | Merge pull request #4914 from danse/4912-2 | John MacFarlane | 2 | -1/+4 | |
parse rST inlines containing newlines closing #4912 | |||||
2018-09-18 | parse rST inlines containing newlines closing #4912 | danse | 2 | -1/+4 | |
this eliminates a regression error introduced after pandoc 2.1.1, affecting rST inline parsing. see the issue for details | |||||
2018-09-16 | Makefile: Fix executable path in trypandoc target. | John MacFarlane | 1 | -1/+1 | |