More chicago-note-bibliographychicago-shortened-notes-bibliography

This commit is contained in:
Dan Stillman 2025-07-14 21:32:18 -04:00
parent 25026e712d
commit 696a15816c
2 changed files with 3 additions and 3 deletions

View file

@ -857,7 +857,7 @@ async function citeprocToHTML(itemOrItems, searchParams, asCitationList) {
// Filter out attachments, annotations, and notes, which we can't generate citations for
items = items.filter(item => item.isRegularItem());
let styleID = searchParams.get('style') || 'chicago-note-bibliography';
let styleID = searchParams.get('style') || 'chicago-shortened-notes-bibliography';
let locale = searchParams.get('locale') || 'en-US';
let linkWrap = searchParams.get('linkwrap') == '1';

View file

@ -1,7 +1,7 @@
"use strict";
describe("Zotero.CiteprocRs", function () {
var chicagoNoteStyleID = "http://www.zotero.org/styles/chicago-note-bibliography";
var chicagoNoteStyleID = "http://www.zotero.org/styles/chicago-shortened-notes-bibliography";
var chicagoAuthorDateStyleID = "http://www.zotero.org/styles/chicago-author-date";
var style;
function getCiteprocJSEngine(style) {
@ -106,7 +106,7 @@ describe("Zotero.CiteprocRs", function () {
citeprocRS.free();
});
describe('with chicago-note-bibliography.csl', function () {
describe('with chicago-shortened-notes-bibliography.csl', function () {
before(function () {
style = Zotero.Styles.get(chicagoNoteStyleID);
});