paper2json

Converts a Dropbox 'Paper' document to json (via ArchieML)

Usage no npm install needed!

<script type="module">
  import paper2json from 'https://cdn.skypack.dev/paper2json';
</script>

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