Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-06 | Remove `\setupthinrules` from default context template. | John MacFarlane | 3 | -6/+0 | |
The width parameter this used is not actually supported, and the command didn't do anything. | |||||
2021-01-05 | HTML writer: fix implicit_figure at end of footnotes. | John MacFarlane | 2 | -3/+27 | |
Closes #7006. | |||||
2021-01-05 | Implement defaults file inheritance (#6924) | David Martschenko | 14 | -33/+189 | |
Allow defaults files to inherit options from other defaults files by specifying them with the following syntax: `defaults: [list of defaults files or single defaults file]`. | |||||
2021-01-04 | LaTeX reader: handle filecontents environment. | John MacFarlane | 3 | -6/+65 | |
Closes #7003. | |||||
2021-01-04 | EPUB writer: adjust internal links to identifiers... | John MacFarlane | 1 | -0/+20 | |
defined in raw HTML sections after splitting into chapters. Closes #7000. | |||||
2021-01-03 | EPUB writer: recognize `Format "html4"`, `Format "html5"` as raw HTML. | John MacFarlane | 1 | -2/+8 | |
2021-01-03 | EPUB writer: adjust internal links to images, links, and tables... | John MacFarlane | 1 | -0/+6 | |
after splitting into chapters. Previously we only did this for Div and Span and Header elements. See #7000. | |||||
2021-01-03 | Org reader: mark verbatim code with class "verbatim". (#6998) | Dimitri Sabadie | 2 | -3/+3 | |
* Replace org-mode’s verbatim from code to codeWith. This adds the `"verbatim"` class so that exporters can apply a specific style on it. For instance, it will be possible for HTML to add a CSS rule for code + verbatim class. * Alter test for org-mode’s verbatim change. See previous commit for further detail on the new implementation. | |||||
2021-01-02 | LaTeX reader: put contents of unknown environments in a Div... | John MacFarlane | 1 | -1/+1 | |
when `raw_tex` is not enabled. (When `raw_tex` is enabled, the whole environment is parsed as a raw block.) The class name is the name of the environment. Previously, we just included the contents without the surrounding Div, but having a record of the environment's boundaries and name can be useful. Closes #6997. | |||||
2021-01-02 | LaTeX writer: revert table line height increase in 2.11.3. | John MacFarlane | 7 | -80/+63 | |
In 2.11.3 we started adding `\addlinespace`, which produced less dense tables. This wasn't an intentional change; I misunderstood a comment in the discussion leading up to the change. This commit restores the earlier default table appearance. Note that if you want a less dense table, you can use something like `\def\arraystretch{1.5}` in your header. Closes #6996. | |||||
2021-01-01 | Org reader: restructure output of captioned code blocks | Albert Krewinkel | 2 | -17/+15 | |
The Div wrapper of code blocks with captions now has the class "captioned-content". The caption itself is added as a Plain block inside a Div of class "caption". This makes it easier to write filters which match on captioned code blocks. Existing filters will need to be updated. Closes: #6977 | |||||
2020-12-30 | Mediawiki reader: allow space around storng/emph delimiters. | John MacFarlane | 2 | -6/+25 | |
Closes #6993. | |||||
2020-12-30 | Undo the "Use fromRight" hlint hint. | John MacFarlane | 2 | -2/+5 | |
2020-12-30 | Hlint fixes | John MacFarlane | 2 | -2/+3 | |
2020-12-30 | Update ms table tests. | John MacFarlane | 1 | -0/+14 | |
2020-12-30 | Ms writer: don't justify inside table cells. | John MacFarlane | 1 | -1/+3 | |
2020-12-30 | MANUAL: Document use of citations in note styles. | John MacFarlane | 1 | -0/+28 | |
See #6828. | |||||
2020-12-29 | CircleCI: fix stack installation. | John MacFarlane | 1 | -1/+1 | |
homebrew no longer has a bottle for haskell-stack for the old macOS version we're building on. | |||||
2020-12-29 | Bump to 2.11.3.2, update changelog and man page | John MacFarlane | 5 | -6/+64 | |
2020-12-29 | Use citeproc 0.3.0.3. | John MacFarlane | 2 | -2/+2 | |
Fixes an issue in author-only citations when both an author and translator are present. | |||||
2020-12-29 | Improve fix to #6983. | John MacFarlane | 1 | -1/+3 | |
If we have a paragraph then a bookmarkEnd, we don't need to insert the empty paragraph (and in fact it alters the spacing). Closes #6983. | |||||
2020-12-28 | Docx writer: fix nested tables with captions. | John MacFarlane | 1 | -4/+6 | |
Previously we got unreadable content, because docx seems to want a `<w:p>` element (even an empty one) at the end of every table cell. Closes #6983. | |||||
2020-12-28 | Update test for new citeproc and require it in cabal. | John MacFarlane | 2 | -2/+2 | |
2020-12-28 | Use latest citeproc release. | John MacFarlane | 1 | -1/+1 | |
2020-12-28 | HTML reader: use renderTags' from Text.Pandoc.Shared. | Albert Krewinkel | 1 | -25/+3 | |
The `renderTags'` function was duplicated when the reader used `Text` as its string type. The duplication is no longer necessary. A side effect of this change is that empty `<col>` elements are written as self-closing tags in raw HTML blocks. | |||||
2020-12-28 | MANUAL: note that textarea content is never parsed as Markdown. | Albert Krewinkel | 1 | -2/+2 | |
2020-12-27 | Use meta-description instead of description in templates. | John MacFarlane | 3 | -4/+7 | |
Since this is an attribute value, we need to prepare it in the writer. | |||||
2020-12-27 | templates: added the `description` metatag to both html4 and html5 templates ↵ | Jerry Sky | 2 | -0/+6 | |
(#6982) The `description` meta tag will make the generated HTML documents more complete and SEO-friendly. | |||||
2020-12-27 | Require texmath 0.12.1. | John MacFarlane | 3 | -5/+2 | |
2020-12-27 | Add support for writing nested tables to asciidoc (#6972) | timo-a | 2 | -7/+114 | |
Added field to WriterState that denotes the current nesting level for traversing tables. Depending on the value of that field nested tables are recognized and written. Asciidoc supports one level of nesting. If deeper tables are to be written, they are omitted and a warning is issued. | |||||
2020-12-27 | Powerpoint writer: allow arbitrary OOXML in raw inline elements | Albert Krewinkel | 2 | -23/+28 | |
The raw text is now included verbatim in the output. Previously is was parsed into XML elements, which prevented the inclusion of partial XML snippets. | |||||
2020-12-24 | Citeproc: fix handling of empty URL variables (`DOI`, etc.). | John MacFarlane | 1 | -1/+3 | |
The `linkifyVariables` function was changing these to links which then got treated as non-empty by citeproc, leading to wrong results (e.g. ignoring nonempty URL when empty DOI is present). Addresses part 2 of jgm/citeproc#41. | |||||
2020-12-20 | HTML writer: don't include p tags in CSL bibliography entries. | John MacFarlane | 1 | -2/+7 | |
Fixes a regression in 2.11.3. Closes #6966 | |||||
2020-12-20 | LaTeX writer: support colspans and rowspans in tables. (#6950) | Albert Krewinkel | 10 | -97/+326 | |
Note that the multirow package is needed for rowspans. It is included in the latex template under a variable, so that it won't be used unless needed for a table. | |||||
2020-12-20 | Fixed table with file extensions and interpreters | wuffi | 1 | -1/+2 | |
Assigned .pl file extension to perl interpreter and .rb to ruby | |||||
2020-12-18 | Bump to 2.11.3.1 and update changelog and man page. | John MacFarlane | 3 | -2/+15 | |
2020-12-18 | Use citeproc 0.3.0.1. | John MacFarlane | 2 | -2/+2 | |
2020-12-18 | Remove data/templates/README.markdown. | John MacFarlane | 1 | -49/+0 | |
2020-12-18 | New advice for pre-commit filter. | John MacFarlane | 1 | -1/+2 | |
Without `--diff-filter=MA` it will try to lint deletions, and fail because the file is not present. | |||||
2020-12-18 | Remove data/make-reference-files.hs. | John MacFarlane | 1 | -27/+0 | |
I don't think this has been used for a long time. | |||||
2020-12-18 | Remove some extraneous files in data directory. | John MacFarlane | 3 | -89/+0 | |
2020-12-18 | Improve check target to test data/ too. | John MacFarlane | 2 | -12/+7 | |
2020-12-18 | Fix typo in CONTRIBUTING.md | Benjamin Wuethrich | 1 | -1/+1 | |
2020-12-18 | Add test/writer.asciidoctor, tables.asciidoctor to extra-source-files. | John MacFarlane | 1 | -0/+2 | |
2020-12-18 | Remove some test files that are no longer used. | John MacFarlane | 3 | -48/+0 | |
2020-12-18 | Remove checkdocs from lint ci. | John MacFarlane | 1 | -4/+0 | |
2020-12-18 | Move sanity checks to lint ci. | John MacFarlane | 2 | -9/+12 | |
2020-12-18 | Add sanity checks to all CI targets. | John MacFarlane | 1 | -0/+6 | |
2020-12-18 | Makefile: Fix checkdocs target. | John MacFarlane | 1 | -1/+1 | |
2020-12-18 | Add sanity checks to ci. | John MacFarlane | 1 | -0/+3 | |