paper2json
v0.2.3
Published
Converts a Dropbox 'Paper' document to json (via ArchieML)
Downloads
20
Maintainers
Readme
Paper2JSON
In summary, the coolest thing ever.
Also converts a Dropbox paper document to JSON using ArchieML.
Sister project to Googledoc-to-json
CLI Usage
$ npx paper2json <Dropbox docId> -t <Dropbox Access Token>
// will output aml.json (default)
API
const fs = require('fs')
const paper2json = require('paper2json')
paper2json(docId, accessToken)
.then(aml => fs.writeFileSync('test/aml.json', JSON.stringify(aml, null, '\t')))
Get a damn access token by reading this...
Testing
$ ACCESS_TOKEN=xxyyzz npm test