aboutsummaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)AuthorFilesLines
2021-02-02Fix stack configAlbert Krewinkel1-1/+1
2021-02-02Lua: add module "pandoc.path"Albert Krewinkel1-1/+3
The module allows to work with file paths in a convenient and platform-independent manner. Closes: #6001 Closes: #6565
2021-02-01BibTeX writer fixes. Closes #7067.John MacFarlane1-2/+2
+ Require citeproc 0.3.0.7, which correctly titlecases when titles contain non-ASCII characters. + Correctly handle 'pages' (= 'page' in CSL). + Correctly handle BibLaTeX 'langid' (= 'language' in CSL). + In BibTeX output, protect foreign titles since there's no language field.
2021-01-30Require citeproc 0.3.0.6.John MacFarlane1-4/+4
2021-01-30Use tasty-bench instead of criterion for benchmarks.John MacFarlane1-0/+1
It is much lighter-weight.
2021-01-30Use latest citeproc.John MacFarlane1-4/+4
The fix to jgm/citeproc#49 also closes #7060.
2021-01-22Use citeproc 0.3.0.5.John MacFarlane1-1/+1
2021-01-15Use citeproc >= 0.3.0.4.John MacFarlane1-4/+4
2021-01-15Use dev version of citeproc.John MacFarlane1-4/+4
Change a citation test which had wrong disambiguation (see jgm/citeproc#44).
2021-01-11Use commonmark 0.1.1.3.John MacFarlane1-1/+1
2020-12-29Use citeproc 0.3.0.3.John MacFarlane1-1/+1
Fixes an issue in author-only citations when both an author and translator are present.
2020-12-28Use latest citeproc release.John MacFarlane1-1/+1
2020-12-27Require texmath 0.12.1.John MacFarlane1-0/+1
2020-12-18Use citeproc 0.3.0.1.John MacFarlane1-1/+1
2020-12-17Remove .travis.yml and add CircleCI config.John MacFarlane1-1/+0
2020-12-17Use skylighting 0.10.2.John MacFarlane1-2/+2
Cloess #6625.
2020-12-16Use released citeproc 0.3.John MacFarlane1-4/+4
2020-12-16Use released doctemplates 0.9.John MacFarlane1-4/+1
2020-12-16Fix citeproc regression with duplicate references.John MacFarlane1-4/+4
- Use dev version of citeproc, which handles duplicate ids better, preferring the last one in the list and discarding the rest. - Ensure that inline citations take priority over external ones. See jgm/citeproc#36. This restores the behavior of pandoc-citeproc.
2020-12-16Use latest dev version of doctemplates.John MacFarlane1-1/+1
2020-12-15Properly handle boolean values in writing YAML metadata.John MacFarlane1-1/+4
(Markdown writer.) This requires doctemplates >= 0.9. Closes #6388.
2020-12-09Use latest citeproc release.John MacFarlane1-4/+4
2020-11-30Use a more recent stack resolver.John MacFarlane1-5/+1
2020-11-30Use doctemplates 0.8.3.John MacFarlane1-1/+1
Fixes issues with nested for loops in templates.
2020-11-24Use skylighting 0.10.1.John MacFarlane1-2/+2
2020-11-22Use dev version of citeproc.John MacFarlane1-1/+4
2020-11-18Remove 'static' flag.John MacFarlane1-1/+0
This isn't really necessary and can be misleading (e.g. on macOS, where a fully static build isn't possible). cabal's new option `--enable-executable-static` does the same. On stack you can add something like this to the options for your executable in package.yaml: ld-options: -static -pthread
2020-11-18Use citeproc 0.2John MacFarlane1-1/+1
2020-11-05Use citeproc 0.1.1.1.John MacFarlane1-2/+1
Closes #6813.
2020-11-05Require latest commonmark, commonmark-extensions.John MacFarlane1-2/+2
Fixes a bug with `autolink_bare_uris` and commonmark.
2020-11-05Use latest commonmark, commonmark-extensions.John MacFarlane1-2/+2
2020-11-04Use citeproc 0.1.1.John MacFarlane1-2/+1
2020-11-01Use latest commonmark, commonmark-extensions.John MacFarlane1-2/+2
This fixes a bug with nested blocks in footnotes with the `footnote` extension to `commonmark`. See jgm/commonmark-hs#63.
2020-11-01Use latest citeproc.John MacFarlane1-1/+1
2020-10-29Use new citeproc; do note capitalization here, not in citeproc.John MacFarlane1-1/+1
2020-10-27Use latest citeproc. Closes #6783.John MacFarlane1-1/+2
2020-10-22stack.yaml - use latest release of skylighting.John MacFarlane1-2/+2
2020-10-22Require citeproc >= 0.1.0.3.John MacFarlane1-2/+1
In the previous release we pointed to this with cabal.project and stack.yaml, but jumped the gun because citeproc 0.1.0.3 had not yet been officially released.
2020-10-21Use latest citeproc.John MacFarlane1-1/+2
This fixes a problem with author-in-text citations for references including both an author and an editor. Previously, both were included in the text, but only the author should be. Closes #6765. Added a test.
2020-10-15Require citeproc 0.1.0.2.John MacFarlane1-1/+1
2020-10-13Use citeproc 0.1.0.1.John MacFarlane1-2/+1
2020-10-13Depend on latest citeproc.John MacFarlane1-1/+1
This fixes the citation number issue with ieee.csl and other styles that do not explicitly sort bibliographies. (Pandoc was numbering them by their order in the bibliography file, rather than the order cited, as required by the CSL spec.) Closes #6741.
2020-10-13Use latest citeproc (better grouping/collapsing behavior with prefixes).John MacFarlane1-1/+2
2020-10-09Use released citeproc 0.1.John MacFarlane1-2/+1
2020-10-07Use lastest citeproc.John MacFarlane1-1/+1
2020-10-07Use latest citeproc.John MacFarlane1-1/+1
Better solution to the problem of entities in CSL JSON output.
2020-10-03Use latest citeproc.John MacFarlane1-1/+1
Update chicago-fullnute-bibliography test, which is now correct.
2020-10-01Update to lastest citeprocJohn MacFarlane1-1/+1
2020-09-27Use latest citeproc.John MacFarlane1-1/+1
2020-09-27Use latest citeproc.John MacFarlane1-1/+1