diff options
| author | John MacFarlane <[email protected]> | 2025-07-20 15:07:51 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-07-20 15:29:55 -0700 |
| commit | c9c0328179a9711447b1afa0dd34a71a91a0db5c (patch) | |
| tree | a54e27b0e8b77f4bfd0d389a57664aaa6877169e | |
| parent | f4eca1f3fb20b424f111f5623390471ba444cbf9 (diff) | |
Fix citeproc-87 test.
When we updated to the latest chicago-author-date.csl, this test
no longer tested what it was supposed to; so we use a different csl.
| -rw-r--r-- | test/command/citeproc-87.md | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/test/command/citeproc-87.md b/test/command/citeproc-87.md index 5ff5131f0..2c6f7a73b 100644 --- a/test/command/citeproc-87.md +++ b/test/command/citeproc-87.md @@ -18,7 +18,7 @@ Foo (Aristotele, s.d., 50: «Disse: "bar"»). «Disse: "baz"» The Quoted is passed to citeproc as a Span ("",["csl-quoted"],[]) so that flipflopping and localization occur. ``` -% pandoc -C -t plain -Mlang=en +% pandoc -C -t plain -Mlang=en --csl command/le-tapuscrit-note.csl --- references: - id: a @@ -30,13 +30,15 @@ references: Foo [@a 50]. ^D -Foo (Aristotele, n.d., 50). +Foo.[1] -Aristotele. n.d. Metafisica Et “Physica”. +ARISTOTELE, “Metafisica et ‘Physica’.” + +[1] Aristotele, “Metafisica et ‘Physica’,” p. 50. ``` ``` -% pandoc -C -t plain -Mlang=it +% pandoc -C -t plain -Mlang=it --csl command/le-tapuscrit-note.csl --- references: - id: a @@ -48,8 +50,10 @@ references: Foo [@a 50]. ^D -Foo (Aristotele, s.d., 50). +Foo.[1] + +ARISTOTELE, «Metafisica et “Physica”». -Aristotele. s.d. Metafisica et «Physica». +[1] Aristotele, «Metafisica et “Physica”», p. 50. ``` |
