feature: wrap converted markdown in an html-from-markdown class

This commit is contained in:
Andy Burke 2025-09-11 11:32:58 -07:00
parent 55f45b4e5b
commit 604090d8b8
4 changed files with 17 additions and 9 deletions

View file

@ -402,5 +402,5 @@ export function md_to_html(
}
}
return html;
return `<div class="html-from-markdown">${html}</div>`;
}