Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Latest commit

 

History

History
49 lines (43 loc) · 1.13 KB

README.md

File metadata and controls

49 lines (43 loc) · 1.13 KB

Zotero to CSL

Convert Zotero JSON to CSL-JSON, using the field mappings from https://github.com/aurimasv/z2csl.

Before use in this library, the mapping file is converted to JSON using the Python program xml2json. This is done to enable the library to work in both browsers and Node without having to deal with differing XML parsers.

Usage

var zoteroToCSL = require('zotero-to-csl');

var zoteroData = {
  itemType: 'book',
  title: 'Deportation: Its meaning and menace.',
  creators: [
    {
      creatorType: 'author', 
      lastName: 'Berkman',
      firstName: 'Alexander',
    },
    {
      creatorType: 'author', 
      lastName: 'Goldman',
      firstName: 'Emma',
    }
  ],
  date: '1919'
}

var cslData = zoteroToCsl(zoteroData);
console.log(cslData)
/*
{
  type: 'book',
  title: 'Deportation: Its meaning and menace.'
  author: [
    { given: 'Alexander', family: 'Berkman' }
    { given: 'Emma', family: 'Goldman' }
  ],
  issued: { raw: '1919' }
}
*/