aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-12-30MANUAL: Document use of citations in note styles.John MacFarlane1-0/+28
See #6828.
2020-12-29CircleCI: fix stack installation.John MacFarlane1-1/+1
homebrew no longer has a bottle for haskell-stack for the old macOS version we're building on.
2020-12-29Bump to 2.11.3.2, update changelog and man pageJohn MacFarlane5-6/+64
2020-12-29Use citeproc 0.3.0.3.John MacFarlane2-2/+2
Fixes an issue in author-only citations when both an author and translator are present.
2020-12-29Improve fix to #6983.John MacFarlane1-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-28Docx writer: fix nested tables with captions.John MacFarlane1-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-28Update test for new citeproc and require it in cabal.John MacFarlane2-2/+2
2020-12-28Use latest citeproc release.John MacFarlane1-1/+1
2020-12-28HTML reader: use renderTags' from Text.Pandoc.Shared.Albert Krewinkel1-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-28MANUAL: note that textarea content is never parsed as Markdown.Albert Krewinkel1-2/+2
2020-12-27Use meta-description instead of description in templates.John MacFarlane3-4/+7
Since this is an attribute value, we need to prepare it in the writer.
2020-12-27templates: added the `description` metatag to both html4 and html5 templates ↵Jerry Sky2-0/+6
(#6982) The `description` meta tag will make the generated HTML documents more complete and SEO-friendly.
2020-12-27Require texmath 0.12.1.John MacFarlane3-5/+2
2020-12-27Add support for writing nested tables to asciidoc (#6972)timo-a2-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-27Powerpoint writer: allow arbitrary OOXML in raw inline elementsAlbert Krewinkel2-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-24Citeproc: fix handling of empty URL variables (`DOI`, etc.).John MacFarlane1-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-20HTML writer: don't include p tags in CSL bibliography entries.John MacFarlane1-2/+7
Fixes a regression in 2.11.3. Closes #6966
2020-12-20LaTeX writer: support colspans and rowspans in tables. (#6950)Albert Krewinkel10-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-20Fixed table with file extensions and interpreterswuffi1-1/+2
Assigned .pl file extension to perl interpreter and .rb to ruby
2020-12-18Bump to 2.11.3.1 and update changelog and man page.John MacFarlane3-2/+15
2020-12-18Use citeproc 0.3.0.1.John MacFarlane2-2/+2
2020-12-18Remove data/templates/README.markdown.John MacFarlane1-49/+0
2020-12-18New advice for pre-commit filter.John MacFarlane1-1/+2
Without `--diff-filter=MA` it will try to lint deletions, and fail because the file is not present.
2020-12-18Remove data/make-reference-files.hs.John MacFarlane1-27/+0
I don't think this has been used for a long time.
2020-12-18Remove some extraneous files in data directory.John MacFarlane3-89/+0
2020-12-18Improve check target to test data/ too.John MacFarlane2-12/+7
2020-12-18Fix typo in CONTRIBUTING.mdBenjamin Wuethrich1-1/+1
2020-12-18Add test/writer.asciidoctor, tables.asciidoctor to extra-source-files.John MacFarlane1-0/+2
2020-12-18Remove some test files that are no longer used.John MacFarlane3-48/+0
2020-12-18Remove checkdocs from lint ci.John MacFarlane1-4/+0
2020-12-18Move sanity checks to lint ci.John MacFarlane2-9/+12
2020-12-18Add sanity checks to all CI targets.John MacFarlane1-0/+6
2020-12-18Makefile: Fix checkdocs target.John MacFarlane1-1/+1
2020-12-18Add sanity checks to ci.John MacFarlane1-0/+3
2020-12-18Add check and check-cabal target ...John MacFarlane1-2/+14
to check to make sure everything needed in tests will get into the source sdist.
2020-12-18Include missing jats test files in pandoc.cabal.John MacFarlane1-0/+2
See #6961.
2020-12-17Update RELEASE-CHECKLIST for CircleCI.John MacFarlane1-1/+1
2020-12-17CircleCI config: add version.txt to artifacts directory.John MacFarlane1-0/+1
2020-12-17Makefile: remove macospkg target.John MacFarlane1-6/+1
Now we just download the artifacts from CircleCI, and make.
2020-12-17Remove .travis.yml and add CircleCI config.John MacFarlane4-178/+63
2020-12-17Update man page.John MacFarlane2-15/+62
2020-12-17Update test with new skylighting CSS.John MacFarlane2-0/+2
2020-12-17Update changelog.John MacFarlane1-0/+291
2020-12-17Update AUTHORSJohn MacFarlane1-0/+8
2020-12-17Remove hie.yaml.John MacFarlane1-37/+0
2020-12-17MANUAL: clarify that inline references take precedence ...John MacFarlane1-0/+4
over references defined in an external bibliography.
2020-12-17Use skylighting 0.10.2.John MacFarlane2-4/+4
Cloess #6625.
2020-12-16Use released citeproc 0.3.John MacFarlane2-8/+8
2020-12-16Use released doctemplates 0.9.John MacFarlane2-9/+1
2020-12-16Add tests: True to cabal.project.John MacFarlane1-0/+2
Hoping this fixes the odd new CI failure for cabal.