mirror of
https://github.com/dsec-hub/dsec-notebook.git
synced 2026-09-22 15:43:58 +00:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import MarkdownIt from "markdown-it";
|
|
|
|
const md = new MarkdownIt({
|
|
html: false,
|
|
linkify: true,
|
|
breaks: true,
|
|
});
|
|
|
|
export function renderMarkdown(source: string): string {
|
|
return md.render(source ?? "");
|
|
}
|