11 lines
148 B
JavaScript
11 lines
148 B
JavaScript
import markdown from "markdown-it";
|
|
|
|
const MD = markdown({
|
|
html: true,
|
|
xhtmlOut: true,
|
|
breaks: true,
|
|
linkify: true,
|
|
});
|
|
|
|
export default MD;
|