Support level 6 headings in preview

pull/882/head
Zef Hemel 2024-06-07 08:27:11 +02:00
parent e9c3d74dbf
commit 60461cf2db
1 changed files with 5 additions and 0 deletions

View File

@ -118,6 +118,11 @@ function render(
name: "h5",
body: cleanTags(mapRender(t.children!)),
};
case "ATXHeading6":
return {
name: "h6",
body: cleanTags(mapRender(t.children!)),
};
case "Paragraph":
return {
name: "span",