0.6.1 • Published 1 year ago

@citation-js/plugin-zenodo v0.6.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

This plugin can convert files in the Zenodo Legacy Deposit file format.

Install

npm

npm install @citation-js/plugin-zenodo

Browser

Make a build with @citation-js/plugin-zenodo on the build tool!

Use

Register the plugin by require-ing it:

require('@citation-js/plugin-zenodo')

The plugin can then be used as following:

Cite(`{
    "creators": [
        {
            "affiliation": "Radboud Universiteit, Nijmegen",
            "name": "Willighagen, Lars Gerard",
            "orcid": "0000-0002-4751-4637"
        }
    ],
    "description": "Match Wikimedia pictures taxonomic groups",
    "keywords": [
        "Wikimedia",
        "iNaturalist",
        "Wikidata"
    ],
    "license": "MIT",
    "title": "Biodiversity Matcher",
    "upload_type": "software"
}`)

{
  author: [
    {
      family: 'Willighagen',
      given: 'Lars Gerard',
      _orcid: '0000-0002-4751-4637',
      _affiliation: 'Radboud Universiteit, Nijmegen'
    }
  ],
  title: 'Biodiversity Matcher',
  type: 'software',
  abstract: 'Match Wikimedia pictures taxonomic groups',
  keyword: 'Wikimedia,iNaturalist,Wikidata'
}