Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-02-20 | Escape slashes so haddock doesn't think they're italics (#5322) | Chris Martin | 1 | -1/+1 | |
2019-02-18 | Docx reader tests: fix test file with trailing space. | Jesse Rosenthal | 1 | -1/+1 | |
This failed due to the fix of #5273. | |||||
2019-02-18 | Docx reader: add tests for trimming last inline. | Jesse Rosenthal | 3 | -0/+6 | |
2019-02-18 | Docx reader: Trim space inside the last inline. | Jesse Rosenthal | 1 | -1/+2 | |
We have to add one final mempty when we're combining in order to trim inlines appropriately. (We need to use our own trimming routines here due to the way that formatted inlines are smushed together when converting from docx.) Closes #5273 | |||||
2019-02-18 | hlint Muse | Alexander Krotov | 2 | -3/+3 | |
2019-02-18 | Muse reader: add secondary note support | Alexander Krotov | 2 | -5/+28 | |
2019-02-18 | Muse writer: escape secondary notes | Alexander Krotov | 2 | -7/+11 | |
2019-02-18 | Move a comment in Muse Writer | Alexander Krotov | 1 | -1/+1 | |
2019-02-16 | doc/lua-filters.md: fixed typos in mediabag docs. | Albert Krewinkel | 1 | -3/+3 | |
2019-02-16 | T.P.Lua: split StackInstances into smaller Marshaling modules | Albert Krewinkel | 12 | -175/+240 | |
2019-02-16 | T.P.Lua: get CommonState from Lua global | Albert Krewinkel | 3 | -54/+64 | |
This allows more control over the common state from within Lua scripts. | |||||
2019-02-15 | ipynb writer: don't create attachments for images with absolute URIs. | John MacFarlane | 1 | -2/+3 | |
...including data: URIs. Closes #5303. | |||||
2019-02-15 | Markdown reader: fix bug parsing fenced code blocks. | John MacFarlane | 2 | -2/+27 | |
Previously parsing would break if the code block contained a string of backticks of sufficient length followed by something other than end of line. Closes #5304. | |||||
2019-02-15 | Use latest pandoc-citeproc (0.16.1). | John MacFarlane | 2 | -2/+2 | |
2019-02-15 | Revert "JATS writer: Support citations." | John MacFarlane | 1 | -4/+3 | |
This reverts commit 39889c22df578a4310bcf549fcd507c08fbf1416. | |||||
2019-02-15 | JATS writer: Support citations. | John MacFarlane | 1 | -3/+4 | |
2019-02-15 | JATS reader: handle citations with multiple references. | John MacFarlane | 1 | -7/+10 | |
The rid attribute can have a space-separated list of ids. Closes #5310. | |||||
2019-02-14 | Delete default.nix. | John MacFarlane | 1 | -96/+0 | |
This is a generated file and shouldn't be in the repository. Closes #5298. | |||||
2019-02-12 | Docx reader: Add test for reading sdts in footnotes. | Jesse Rosenthal | 3 | -0/+5 | |
2019-02-12 | Docx reader: unwrap sdt elements in footnotes and comments. | Jesse Rosenthal | 1 | -3/+3 | |
We had previously walked the document to unwrap sdt/sdtContent and smartTag tags in `word/document.xml`, but not in the `word/{foot/end}note.xml` and `word/comments.xml`. Closes #5302 | |||||
2019-02-11 | CircleCI: show build.log on cabal builds. | John MacFarlane | 1 | -0/+1 | |
2019-02-11 | Remove redundant import. | John MacFarlane | 1 | -1/+0 | |
2019-02-10 | ipynb writer: keep plain text fallbacks in output... | John MacFarlane | 1 | -26/+14 | |
even if a richer format is included. We don't know what output format will be needed. The fallback can always be weeded out using a filter. Closes #5293. | |||||
2019-02-10 | Implement aria roles doc-bibliography, doc-biblioentry, doc-biblioref. | John MacFarlane | 1 | -2/+10 | |
Note that doc-biblioref is only used when link-citations produces links, since it belongs on links. See #4213. | |||||
2019-02-10 | trypandoc: added some missing formats to drop-down list. | John MacFarlane | 1 | -2/+8 | |
2019-02-10 | Provisional changelog updates. | John MacFarlane | 1 | -0/+138 | |
2019-02-10 | Bump to 2.6.1. | John MacFarlane | 1 | -1/+1 | |
2019-02-10 | Update AUTHORS. | John MacFarlane | 1 | -0/+1 | |
2019-02-10 | Use latest skylighting. | John MacFarlane | 6 | -5/+7 | |
2019-02-10 | JATS writer: wrap figure caption in <p> to fix validation (#5292) | Mauro Bieg | 2 | -2/+2 | |
closes #5290 | |||||
2019-02-10 | Add JATS to output option on Try pandoc. (#5291) | Arfon Smith | 1 | -0/+1 | |
2019-02-09 | Added simple ipynb reader/writer tests. | John MacFarlane | 5 | -0/+101 | |
Closes #5274. | |||||
2019-02-09 | ipynb writer - ensure final newline. | John MacFarlane | 1 | -0/+1 | |
2019-02-09 | Add titlepage class to section in epub3 template. | John MacFarlane | 1 | -1/+1 | |
Closes #5269. | |||||
2019-02-09 | Lua filters: load module `pandoc` before calling `init.lua` (#5287) | Albert Krewinkel | 3 | -22/+37 | |
The file `init.lua` in pandoc's data directory is run as part of pandoc's Lua initialization process. Previously, the `pandoc` module was loaded in `init.lua`, and the structure for marshaling was set-up after. This allowed simple patching of element marshaling, but made using `init.lua` more difficult: - it encouraged mixing essential initialization with user-defined customization; - upstream changes to init.lua had to be merged manually; - accidentally breaking marshaling by removing required modules was possible; Instead, all required modules are now loaded before calling `init.lua`. The file can be used entirely for user customization. Patching marshaling functions, while discouraged, is still possible via the `debug` module. | |||||
2019-02-09 | Added support for the `subject` metadata variable to PDF. (#5289) | Pascal Wagler | 2 | -1/+4 | |
2019-02-09 | T.P.Lua: properly indent module-loading error | Albert Krewinkel | 1 | -1/+1 | |
2019-02-09 | data/pandoc.lua: re-export all bundled modules | Albert Krewinkel | 3 | -11/+20 | |
All Lua modules bundled with pandoc, i.e., `pandoc.List`, `pandoc.mediabag`, `pandoc.utils`, and `text` are re-exported from the `pandoc` module. They are assigned to the fields `List`, `mediabag`, `utils`, and `text`, respectively. | |||||
2019-02-09 | Fixed asciidoc display math in list contexts. | John MacFarlane | 3 | -19/+48 | |
2019-02-09 | Asciidoctor writer sets the stem attribute if it contains latexmath | TG | 3 | -1/+11 | |
2019-02-09 | Adds Asciidoctor sprcific writer and tests | TG | 9 | -16/+794 | |
2019-02-09 | AsciiDoc Writer: DisplayMath as asciidoc latexmath block | TG | 3 | -3/+10 | |
2019-02-09 | AsciiDoc writer: change bulletListLevel and orderedListLevel... | John MacFarlane | 1 | -4/+4 | |
so that 0 means "not in a list," which is more what one would expect. | |||||
2019-02-08 | Improve tight/loose list handling. | John MacFarlane | 2 | -2/+24 | |
Closes #5285. Previously the algorithm allowed list items with a mix of Para and Plain, which is never wanted. compactify in T.P.Shared has been modified so that, if a list's items contain (at the top level) Para elements (aside from perhaps at the very end), ALL Plains are converted to Paras. | |||||
2019-02-08 | Fix misleading code comment. | John MacFarlane | 1 | -2/+1 | |
2019-02-08 | Make --metadata-file use pandoc-markdown (#5279) | Mauro Bieg | 1 | -1/+2 | |
see #5272 | |||||
2019-02-08 | Small fix in lua-filters doc. | John MacFarlane | 1 | -1/+1 | |
2019-02-08 | Use latest basement/foundation on 32bit windows. | John MacFarlane | 1 | -2/+3 | |
2019-02-08 | Docx reader: fix paths in archive to prevent Windows failure | Jesse Rosenthal | 1 | -1/+6 | |
Some paths in archives are absolute (have an opening slash) which, for reasons unknown, produces a failure in the test suite on MS Windows. This fixes that by removing the leading slash if it exists. Closes #5277 (previously closed with 4cce0ef but reopened due to this bug). | |||||
2019-02-07 | Revert "Docx reader: Fix windows error" | Jesse Rosenthal | 1 | -2/+1 | |
This reverts commit 2142bbe572cea00b7bb5ad3e10a3afb26845a1f7. |