Path: blob/master/src/packages/frontend/editors/task-editor/README.md
1691 views
React implementation of task list
Data structure
A .tasks file is a bunch of JSON lines of the form:
That's it. Syncdb of course full interprets this so you should not have to. Just think of this as an immutable.js map from uuid's (task_id) to objects that have the following keys:
desc: a string; the markdown task description
position: a floating point number; the task custom order is by position
last_edited: ms since epoch
due_date: optional field with ms since epoch