mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
31 lines
617 B
JavaScript
31 lines
617 B
JavaScript
|
import MarkdownIt from "markdown-it";
|
||
|
import mdTasksLists from 'markdown-it-task-lists';
|
||
|
|
||
|
export class Markdown {
|
||
|
|
||
|
constructor() {
|
||
|
this.renderer = new MarkdownIt({html: true});
|
||
|
this.renderer.use(mdTasksLists, {label: true});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the front-end render used to convert markdown to HTML.
|
||
|
* @returns {MarkdownIt}
|
||
|
*/
|
||
|
getRenderer() {
|
||
|
return this.renderer;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Convert the given Markdown to HTML.
|
||
|
* @param {String} markdown
|
||
|
* @returns {String}
|
||
|
*/
|
||
|
render(markdown) {
|
||
|
return this.renderer.render(markdown);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|