2023-05-02 19:58:32 +08:00

5 lines
101 B
JavaScript

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