Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 592 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 592 Bytes

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