2023-05-04 16:09:19 +08:00

5 lines
101 B
JavaScript

function markdownRender(content) {
const md = new markdownit();
return md.render(content);
}