mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
* tasks: markdown style, checkboxes. Misc fixes * add filtering to tasks * client tasks: complete filtering
8 lines
No EOL
227 B
JavaScript
8 lines
No EOL
227 B
JavaScript
import habiticaMarkdown from 'habitica-markdown';
|
|
|
|
export default function markdown (el, {value, oldValue}) {
|
|
if (value === oldValue) return;
|
|
|
|
el.innerHTML = habiticaMarkdown.render(value);
|
|
el.classList.add('markdown');
|
|
} |