Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-04-29 | Support toc-title in revealjs (#7171) | Florian Kohrt | 1 | -0/+5 | |
* Support toc-title in revealjs * Add semantic HTML "nav" tag Closes #7170. As with default.html5 | |||||
2021-04-29 | Update default.latex (#7234) | badumont | 1 | -1/+4 | |
Fix bad vertical spacing after the bibliography. | |||||
2021-04-29 | Docx reader: add handling of vml image objects (jgm#4735) (#7257) | mbrackeantidot | 4 | -2/+15 | |
They represent images, the same way as other images in vml format. | |||||
2021-04-29 | Further improvements in smart quotes. | John MacFarlane | 2 | -2/+10 | |
Improves heuristic for detection of an "open double quote." Closes #2103. | |||||
2021-04-28 | Smarter smart quotes. | John MacFarlane | 7 | -70/+67 | |
Treat a leading " with no closing " as a left curly quote. This supports the practice, in fiction, of continuing paragraphs quoting the same speaker without an end quote. It also helps with quotes that break over lines in line blocks. Closes #7216. | |||||
2021-04-28 | list of figures before list of tables in LaTeX and ConTeXt templates (#7235) | Julien Dutant | 2 | -6/+6 | |
2021-04-28 | JATS writer: use either styled-content or named-content for spans. | Albert Krewinkel | 2 | -15/+35 | |
If the element has a content-type attribute, or at least one class, then that value is used as `content-type` and the span is put inside a `<named-content>` element. Otherwise a `<styled-content>` element is used instead. Closes: #7211 | |||||
2021-04-27 | Docx writer: autoset table width if no column has an explicit width. | Albert Krewinkel | 4 | -7/+11 | |
2021-04-26 | Add unicode-collation to list of libraries developed to support pandoc. | John MacFarlane | 1 | -0/+4 | |
2021-04-26 | docs/org.md: Add note about default export behavior of org-mode in (#7238) | Charanjit Singh | 1 | -0/+15 | |
Since it seem to be a common source of confusion, this commit adds a note in org-mode documentation referring users to consult org-mode's export documentation when they find themselves in a pinch. | |||||
2021-04-25 | Fixed another typo in cabal.project. | John MacFarlane | 1 | -1/+1 | |
2021-04-25 | Fix typo in cabal.project. | John MacFarlane | 1 | -1/+1 | |
2021-04-25 | Use dev texmath, citeproc. | John MacFarlane | 3 | -5/+11 | |
2021-04-25 | Minor code reformatting. | John MacFarlane | 1 | -1/+2 | |
Also taking this opportunity to note, for the record, that the commit for #7241 should be marked [API change]. It changes the type of `languagesByExtension` in Highlighting, adding a parameter for a `SyntaxMap`. | |||||
2021-04-25 | Writers: Recognize custom syntax definitions (#7241) | Jan Tojnar | 5 | -23/+28 | |
Languages defined using `--syntax-definition` were not recognized by `languagesByExtension`. This patch corrects that, allowing the writers to see all custom definitions. The LaTeX still uses the default syntax map, but that's okay in that context, since `--syntax-definition` won't create new listings styles. | |||||
2021-04-25 | Markdown writer: Cleaner (code)blocks with single class (#7242) | Jan Tojnar | 5 | -8/+14 | |
When a block only has a single class and no other attributes, it is not necessary to wrap the class attribute in curly braces – the class name can be placed after the opening mark as is. This will result in bit cleaner output when pandoc is used as a markdown pretty-printer. | |||||
2021-04-25 | Add quotes properly in markdown YAML metadata fields. | John MacFarlane | 9 | -17/+16 | |
This fixes a bug, which caused the writer to look at the LAST rather than the FIRST character in determining whether quotes were needed. So we got spurious quotes in some cases and didn't get necessary quotes in others. Closes #7245. Updated a number of test cases accordingly. | |||||
2021-04-25 | Remove biblatex-nussbaum.md test. | John MacFarlane | 1 | -63/+0 | |
It is basically the same as biblaetx-quotes.md. | |||||
2021-04-20 | stack.yaml - use latest unicode-collation. | John MacFarlane | 1 | -1/+1 | |
2021-04-20 | Docx writer: add missing file | Albert Krewinkel | 1 | -0/+181 | |
2021-04-20 | Docx writer: extract Table handling into separate module | Albert Krewinkel | 3 | -221/+121 | |
2021-04-19 | Fix nightly build. | John MacFarlane | 1 | -2/+2 | |
2021-04-19 | Issue error message when reader or writer format is malformed. | John MacFarlane | 2 | -6/+6 | |
Previously we exited with an error status but (due to a bug) no message. Closes #7231. | |||||
2021-04-18 | Use MetaInlines not MetaBlocks for multimarkdown metadata fields. | John MacFarlane | 2 | -1/+21 | |
This gives better results in converting to e.g. pandoc markdown. Ref: <https://groups.google.com/d/msgid/pandoc-discuss/9728d1f4-040e-4392-aa04-148f648a8dfdn%40googlegroups.com> | |||||
2021-04-18 | CI: Use cabal 2.4 even with ghc 8.0.2 | John MacFarlane | 1 | -2/+2 | |
2021-04-18 | Use lastest citeproc. | John MacFarlane | 2 | -2/+2 | |
2021-04-18 | Use lastest unicode-collation. | John MacFarlane | 2 | -2/+2 | |
2021-04-18 | MANUAL: Add information about `lang` and bibliography sorting. | John MacFarlane | 1 | -10/+17 | |
2021-04-17 | Update to released unicode-collation, latest citeproc dev version. | John MacFarlane | 16 | -30/+20 | |
Update citeproc test. | |||||
2021-04-17 | Use document's lang for the lang parameter of citeproc... | John MacFarlane | 1 | -2/+1 | |
even if it differs from localeLanguage. (It is designed to be possible to override the locale language, and this is especially useful when one wants to use the unicode extension syntx, e.g. fr-u-kb.) | |||||
2021-04-17 | Use BCP47 language codes in citeproc tests. | John MacFarlane | 3 | -4/+4 | |
2021-04-17 | Remove Text.Pandoc.BCP47 module. | John MacFarlane | 20 | -294/+198 | |
[API change] Use Lang from UnicodeCollation.Lang instead. This is a richer implementation of BCP 47. | |||||
2021-04-17 | Move getLang from BCP47 -> T.P.Writers.Shared. | John MacFarlane | 6 | -74/+77 | |
[API change] | |||||
2021-04-17 | Use new citeproc + unicode-collation. | John MacFarlane | 3 | -1/+145 | |
Add command test for unicode-collation. | |||||
2021-04-16 | JATS writer: reduce unnecessary use of <p> elements for wrapping | Albert Krewinkel | 7 | -144/+166 | |
The `<p>` element is used for wrapping in cases were the contents would otherwise not be allowed in a certain context. Unnecessary wrapping is avoided, especially around quotes (`<disp-quote>` elements). Closes: #7227 | |||||
2021-04-15 | Use latest xml-conduit. | John MacFarlane | 2 | -1/+2 | |
2021-04-10 | JATS writer: convert spans to <named-content> elements | Albert Krewinkel | 2 | -6/+22 | |
Spans with attributes are converted to `<named-content>` elements instead of being wrapped with `<milestone-start/>` and `<milestone-end>` elements. Milestone elements are not allowed in documents using the articleauthoring tag set, so this change ensures the creation of valid documents. Closes: #7211 | |||||
2021-04-10 | JATS writer: add footnote number as label in backmatter | Albert Krewinkel | 3 | -12/+17 | |
Footnotes in the backmatter are given the footnote's number as a label. The articleauthoring output is unaffected from this change, as footnotes are placed inline there. Closes: #7210 | |||||
2021-04-08 | Fix regression in grid tables for wide characters. | John MacFarlane | 2 | -5/+41 | |
In the translation from String to Text, a char-width-sensitive splitAt' was dropped. This commit reinstates it. Closes #7214. | |||||
2021-04-08 | Lua filter: respect Inlines/Blocks filter functions in pandoc.walk_* | Albert Krewinkel | 2 | -3/+10 | |
2021-04-05 | Commonmark writer: Use backslash escapes for `<` and `|`... | John MacFarlane | 2 | -1/+17 | |
instead of entities. Closes #7208. | |||||
2021-04-05 | SelfContained: remove unneeded imports. | John MacFarlane | 1 | -2/+0 | |
2021-04-05 | JATS writer: escape disallows chars in identifiers | Albert Krewinkel | 5 | -109/+162 | |
XML identifiers must start with an underscore or letter, and can contain only a limited set of punctuation characters. Any IDs not adhering to these rules are rewritten by writing the offending characters as Uxxxx, where `xxxx` is the character's hex code. | |||||
2021-04-05 | SelfContained: use application/octet-stream for unknown mime types... | John MacFarlane | 1 | -5/+4 | |
instead of halting with an error. Closes #7202. | |||||
2021-04-03 | Fix typo (#7200) | obcat | 1 | -1/+1 | |
2021-04-02 | Fix "phrase" in DocBook: take classes from "role" not "class". | John MacFarlane | 1 | -1/+1 | |
Closes #7195. Revises #6438. | |||||
2021-04-01 | Org writer: Use LaTeX style maths deliminators (#7196) | tecosaur | 2 | -9/+9 | |
Org works better with LaTeX-style delimiters. | |||||
2021-03-31 | Treat tabs as spaces in ODT Reader. (#7185) | niszet | 4 | -1/+9 | |
2021-03-31 | Require text for trypandoc (#7193) | Roman Beránek | 1 | -1/+1 | |
2021-03-30 | Update org.md (#7189) | Anti-Distinctlyminty | 1 | -2/+1 | |
SELECT_TAGS supported since ac83b9c37c39a49878e7d864fb276c0e4caed338 |