mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-11 19:56:44 +00:00
7 lines
269 B
TypeScript
7 lines
269 B
TypeScript
import Markdown, { MarkdownContentType } from "CommonServer/Types/Markdown";
|
|
|
|
export default class DocsRender {
|
|
public static async render(markdownContent: string): Promise<string> {
|
|
return Markdown.convertToHTML(markdownContent, MarkdownContentType.Docs);
|
|
}
|
|
}
|