site/node_modules/@citation-js/plugin-bibtex/lib-mjs/config.js

23 lines
444 B
JavaScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
import biblatex from './mapping/biblatexTypes.json';
import bibtex from './mapping/bibtexTypes.json';
import * as constants from './input/constants.js';
export default {
constants,
types: {
biblatex,
bibtex
},
parse: {
biblatex: true,
strict: false,
sentenceCase: 'never'
},
format: {
useIdAsLabel: false,
asciiOnly: true
},
biber: {
annotationMarker: '+an',
namedAnnotationMarker: ':'
}
};