feat: static documentation pages

This commit is contained in:
sam 2024-12-25 17:53:31 -05:00
parent fe1cf7ce8a
commit 7468aa20ab
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
6 changed files with 58 additions and 7 deletions

View file

@ -7,11 +7,7 @@ const md = new MarkdownIt({
linkify: true,
}).disable(["heading", "lheading", "link", "table", "blockquote"]);
const unsafeMd = new MarkdownIt({
html: false,
breaks: true,
linkify: true,
});
const unsafeMd = new MarkdownIt();
export const renderMarkdown = (src: string | null) => (src ? sanitize(md.render(src)) : null);