aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-07-24 14:49:59 -0700
committerJohn MacFarlane <[email protected]>2025-07-24 14:51:11 -0700
commit270fbd54f89d3c55b4a8dd88748b235719eb139e (patch)
tree972fa4777ea49824c68bacd7691e325d28eddd6d
parent912f4c7977fd4aca7ec1a9537e5f8009dbc0e43c (diff)
Use latest dev citeproc.
This solves the problem of unwanted capitalization of names at the beginning of citations in footnotes. Closes #10983.
-rw-r--r--cabal.project4
-rw-r--r--stack.yaml2
-rw-r--r--test/command/10983.md22
3 files changed, 26 insertions, 2 deletions
diff --git a/cabal.project b/cabal.project
index e3a3eb97f..4b85b4978 100644
--- a/cabal.project
+++ b/cabal.project
@@ -9,10 +9,12 @@ constraints: skylighting-format-blaze-html >= 0.1.1.3,
-- for now (commercialhaskell/stackage#7545):
data-default-class <= 0.2, data-default <= 0.8
+
+
source-repository-package
type: git
location: https://github.com/jgm/citeproc.git
- tag: 723d22a112a15a8f287d4db68ba05e9083facfec
+ tag: b32c4c117795d8fef3fcc8996a62ee661904738e
source-repository-package
type: git
diff --git a/stack.yaml b/stack.yaml
index 40955fa00..6487afcb0 100644
--- a/stack.yaml
+++ b/stack.yaml
@@ -22,7 +22,7 @@ extra-deps:
- typst-symbols-0.1.8.1
- typst-0.8.0.1
- git: https://github.com/jgm/citeproc.git
- commit: 723d22a112a15a8f287d4db68ba05e9083facfec
+ commit: b32c4c117795d8fef3fcc8996a62ee661904738e
- git: https://github.com/jgm/texmath.git
commit: 77e20978ffcdec4ca50bbb809f061850c0998560
ghc-options:
diff --git a/test/command/10983.md b/test/command/10983.md
new file mode 100644
index 000000000..d31baf281
--- /dev/null
+++ b/test/command/10983.md
@@ -0,0 +1,22 @@
+```
+% pandoc --citeproc --csl command/chicago-fullnote-bibliography.csl -t plain
+---
+references:
+- id: test4
+ type: blog-post
+ title: "Username as author"
+ author:
+ - brtw
+ container-title: "Reddit"
+ issued:
+ year: 2004
+suppress-bibliography: true
+...
+
+[@test4]
+^D
+[1]
+
+[1] brtw, “Username as Author,” Reddit, 2004.
+
+```