0.0.1 • Published 3 years ago

workflow2anki v0.0.1

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

workflowy2anki.js

JavaScript library for converting Workflowy outlines to Anki Flashcards.

Usage

We currently only support the plain text outlines and hopefully more to come soon. This project produces the following structure you can use

// data is the plain text
const reader = new DeckReader();
const decks = reader.readText(data);

Format

[
  {
    "name": "Deck Name",
    "cards": [{ "front": "", "back": "" }]
  }
]

RoadMap

  • Plain text
  • OPML
  • HTML

Development

Make sure to update test.js

npm run tt