Dan Brown

Re-enabled html in markdown editor

Fixes #378
...@@ -215,7 +215,7 @@ module.exports = function (ngApp, events) { ...@@ -215,7 +215,7 @@ module.exports = function (ngApp, events) {
215 } 215 }
216 }]); 216 }]);
217 217
218 - const md = new MarkdownIt(); 218 + const md = new MarkdownIt({html: true});
219 md.use(mdTasksLists, {label: true}); 219 md.use(mdTasksLists, {label: true});
220 220
221 /** 221 /**
......