Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-05-16 | stack.yamls - make sure proper flags used for texmath, pandoc-citeproc. | John MacFarlane | 4 | -0/+14 | |
2016-05-12 | Revert "New method for checking for presence of tex program." | John MacFarlane | 2 | -8/+3 | |
This reverts commit 285bbf61cf2b21278792e48aee7c25fa0ee62faa. | |||||
2016-05-12 | Revert "Use shell instead of proc to check for latex program." | John MacFarlane | 1 | -29/+7 | |
This reverts commit ee45be5723ef6001ae333110ce45ae2f7b1b17af. | |||||
2016-05-12 | Revert "Require process >= 1.2.1." | John MacFarlane | 2 | -4/+9 | |
This reverts commit 07a4320ba97cdd219e5cbb18f21dbbda00bc5543. | |||||
2016-05-12 | Merge pull request #2919 from janschulz/master | John MacFarlane | 1 | -4/+6 | |
Better way to find the artifacts on appveyor | |||||
2016-05-13 | Better way to find the artifacts on appveyor | Jan Schulz | 1 | -4/+6 | |
2016-05-12 | appveyor - enable automatic builds, fix zip creation. | John MacFarlane | 1 | -3/+4 | |
2016-05-12 | Require process >= 1.2.1. | John MacFarlane | 2 | -9/+4 | |
We need `createProcess_` to be exported. | |||||
2016-05-12 | Merge pull request #2894 from sid-kap/rst-code-class | John MacFarlane | 2 | -6/+37 | |
Add class option for code block in RST reader | |||||
2016-05-11 | Merge pull request #2913 from jlduran/strut-minipage-tables | John MacFarlane | 2 | -74/+74 | |
Retake on strut with \minipage inside tables | |||||
2016-05-11 | Merge pull request #2910 from janschulz/master | John MacFarlane | 2 | -12/+50 | |
Add appveyor artefacts for pandoc.exe | |||||
2016-05-11 | Added some CSS to handle older versions of process. | John MacFarlane | 1 | -1/+6 | |
`createProcess_` is in Internals until process 1.2.1. | |||||
2016-05-11 | Use windows stack.yaml on appveyor to embedded the templates | Jan Schulz | 2 | -13/+43 | |
2016-05-11 | Use shell instead of proc to check for latex program. | John MacFarlane | 1 | -7/+24 | |
This should get .bat files on Windows. Closes #2903, with luck. | |||||
2016-05-11 | Merge pull request #2912 from tarleb/org-export-settings | John MacFarlane | 4 | -159/+327 | |
Org reader: basic support for export settings | |||||
2016-05-11 | Org reader: parse but ignore export options | Albert Krewinkel | 1 | -2/+35 | |
All known export options are parsed but ignored. | |||||
2016-05-11 | Org reader: add support for sub/superscript export options | Albert Krewinkel | 3 | -3/+63 | |
Org-mode allows to specify export settings via `#+OPTIONS` lines. Disabling simple sub- and superscripts is one of these export options, this options is now supported. | |||||
2016-05-11 | Org reader: move parser state into separate module | Albert Krewinkel | 3 | -158/+233 | |
The org reader code has become large and confusing. Extracting smaller parts into submodules should help to clean things up. | |||||
2016-05-11 | Retake on strut with \minipage inside tables | Jose Luis Duran | 2 | -74/+74 | |
Reimplement on 4c684561ee0665b014e887ae559b7020e4e9f2d3 The problem with 4c68456 was a space between the cell contents and the `\strut` that affected the alignment. | |||||
2016-05-10 | Add appveyor artefacts for pandoc.exe | Jan Schulz | 1 | -0/+8 | |
2016-05-10 | Made detection of latex program more robust. | John MacFarlane | 1 | -2/+5 | |
Catch not-found error. Improves on 285bbf61cf2b21278792e48aee7c25fa0ee62faa to fix #2903. | |||||
2016-05-09 | New method for checking for presence of tex program. | John MacFarlane | 2 | -3/+5 | |
Now instead of using `findExecutable`, which has limitations on Windows, we just do `progname --version` and see if it returns successfully. Closes #2903. | |||||
2016-05-09 | Merge pull request #2908 from ickc/master | John MacFarlane | 1 | -1/+1 | |
Use the full MathJax configuration to maximize loading speed | |||||
2016-05-09 | Loading the full MathJax config to maximize loading speed | KolenCheung | 1 | -1/+1 | |
2016-05-09 | Merge pull request #1 from jgm/master | ickc | 70 | -457/+2786 | |
Merge from jgm's master | |||||
2016-05-09 | Avoid lazy foldl in LaTeX writer. | John MacFarlane | 1 | -4/+5 | |
2016-05-09 | Change default mathjax setup to use TeX-AMS_CHTML configuration. | John MacFarlane | 1 | -1/+1 | |
This is designed for cases where the input is always TeX and maximal conformity with TeX is desired. It seems to be smaller and load faster than what we used before. See #2858. | |||||
2016-05-09 | Use new CommonHTML output for MathJax (updated default MathJax URL). | John MacFarlane | 1 | -1/+1 | |
Closes #2858. | |||||
2016-05-09 | README: clarified documentation of `implicit_header_references`. | John MacFarlane | 1 | -5/+10 | |
Closes #2904. | |||||
2016-05-09 | Merge pull request #2907 from tarleb/org-fixes | John MacFarlane | 3 | -5/+14 | |
Org fixes (reader and writer) | |||||
2016-05-09 | Org writer: print empty table rows | Albert Krewinkel | 1 | -1/+1 | |
Empty table rows should not be dropped from the output, so row-height is always set to be at least 1. | |||||
2016-05-09 | Org reader: fix inline-LaTeX regression | Albert Krewinkel | 2 | -4/+13 | |
The last fix for whitespace handling of inline LaTeX commands was incorrect, preventing correct recognition of inline LaTeX commands which contain spaces. This fix ensures that only trailing whitespace is cut off. | |||||
2016-05-09 | Merge pull request #2906 from roblabla/feature-mediaWikiTableHeaderSpaces | John MacFarlane | 3 | -1/+14 | |
Allow spaces before '!' in MediaWiki table header | |||||
2016-05-09 | Allow spaces before '!' in MediaWiki table header | roblabla | 3 | -1/+14 | |
2016-05-05 | Merge pull request #2898 from tarleb/org-table-refactoring | John MacFarlane | 2 | -64/+75 | |
Org reader: table parsing code refactoring and fixes | |||||
2016-05-05 | Merge pull request #2900 from tarleb/org-symbol-fix | John MacFarlane | 2 | -5/+11 | |
Org reader: fix spacing after LaTeX-style symbols | |||||
2016-05-04 | Org reader: fix spacing after LaTeX-style symbols | Albert Krewinkel | 2 | -5/+11 | |
The org-reader was droping space after unescaped LaTeX-style symbol commands: `\ForAll \Auml` resulted in `∀Ä` but should give `∀ Ä` instead. This seems to be because the LaTeX-reader treats the command-terminating space as part of the command. Dropping the trailing space from the symbol-command fixes this issue. | |||||
2016-05-04 | Org reader: fix handling of empty table cells, rows | Albert Krewinkel | 2 | -14/+29 | |
This fixes Org mode parsing of some corner cases regarding empty cells and rows. Empty cells weren't parsed correctly, e.g. `|||` should be two empty cells, but would be parsed as a single cell containing a pipe character. Empty rows where parsed as alignment rows and dropped from the output. This fixes #2616. | |||||
2016-05-04 | Org reader: refactor rows-to-table conversion | Albert Krewinkel | 1 | -25/+25 | |
This refactores the codes conversing a list table lines to an org table ADT. The old code was simplified and is now slightly less ugly. | |||||
2016-05-04 | Org reader: stop padding short table rows | Albert Krewinkel | 2 | -28/+24 | |
Emacs Org-mode doesn't add any padding to table rows. The first row (header or first body row) is used to determine the column count, no other magic is performed. The org reader was padding rows to the length of the longest table row. This was done due to a misunderstanding of how Org handles tables. This feature reflected how Org-mode handles tables when pressing <TAB>. The Org exporter however, which is what the reader should implement, doesn't do any of this. So this was a mis-feature that made the reader more complex and reduced comparability. It was hence removed. | |||||
2016-05-01 | Added docbook5 templates, test files to pandoc.cabal. | John MacFarlane | 1 | -0/+3 | |
2016-05-01 | Bump version to 1.17.1. | John MacFarlane | 1 | -1/+1 | |
We need a minor version bump because of the addition of `writerDocbook5` to `WriterOptions`. | |||||
2016-05-01 | README: Added docbook5 as output format. | John MacFarlane | 1 | -22/+22 | |
2016-05-01 | Added docbook5 template. | John MacFarlane | 1 | -7/+7 | |
2016-05-01 | Merge pull request #2890 from bcdevices/docbook5-writer | John MacFarlane | 6 | -6/+1849 | |
Docbook5 write support | |||||
2016-05-01 | Add one more test | Sidharth Kapur | 1 | -0/+14 | |
2016-05-01 | Use `codeBlockWith` | Sidharth Kapur | 1 | -6/+6 | |
2016-05-01 | Add test for RST code directive class | Sidharth Kapur | 1 | -0/+15 | |
2016-05-01 | Add class option for code block in RST reader | Sidharth Kapur | 1 | -6/+8 | |
According to http://docutils.sourceforge.net/docs/ref/rst/directives.html#code, the code directive supports the ":class:" option. | |||||
2016-05-01 | Binary fmts throw PandocError on zip-archive fail | Jesse Rosenthal | 2 | -3/+7 | |
Commit 91dc3342 made `readDocx` throw PandocError if there was an unarchiving error. This extends that fix to `readOdt` and `readEPUB`. |