2023-03-03 23:20:13 +00:00
|
|
|
import MarkdownIt from "markdown-it";
|
|
|
|
|
|
|
|
export const md = new MarkdownIt("default", { html: true, breaks: true, linkify: true });
|
2023-03-23 21:20:35 +00:00
|
|
|
|
|
|
|
export function addListFormatting(html: string) {
|
|
|
|
return html
|
|
|
|
.replaceAll("<ul>", "<ul style='list-style-type: disc; list-style-position: inside; margin-left: 12px'>")
|
|
|
|
.replaceAll(
|
|
|
|
"<ol>",
|
|
|
|
"<ol style='list-style-type: decimal; list-style-position: inside; margin-left: 12px'>"
|
|
|
|
);
|
|
|
|
}
|