diff --git a/experiments/outline-editor/editor.js b/experiments/outline-editor/editor.js index 873d8b3..1d790ab 100755 --- a/experiments/outline-editor/editor.js +++ b/experiments/outline-editor/editor.js @@ -338,6 +338,8 @@ var Outline = { elem.collapsed = value.trim() == 'true' return '' }) // markdown... + .replace(/^TODO\s*(.*)$/, ' $1') + .replace(/^DONE\s*(.*)$/, ' $1') .replace(/^######\s*(.*)$/, style('heading-6')) .replace(/^#####\s*(.*)$/, style('heading-5')) .replace(/^####\s*(.*)$/, style('heading-4')) diff --git a/experiments/outline-editor/index.html b/experiments/outline-editor/index.html index 5e75988..b7373a5 100755 --- a/experiments/outline-editor/index.html +++ b/experiments/outline-editor/index.html @@ -28,7 +28,9 @@ var setup = function(){