JavaScript library for converting Workflowy outlines to Anki Flashcards.
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);
[
{
"name": "Deck Name",
"cards": [{ "front": "", "back": "" }]
}
]
- Plain text
- OPML
- HTML
Make sure to update test.js
npm run tt