feat: add markdown-it library

This commit is contained in:
Devin Haska 2024-01-31 11:41:17 -08:00
parent c008d223f6
commit 29872edc10
4 changed files with 49 additions and 2 deletions

View file

@ -0,0 +1,8 @@
const markdownIt = require("markdown-it");
module.exports = markdownIt({
html: true,
breaks: true,
linkify: true,
typographer: true,
});