diff --git a/src/module.ts b/src/module.ts index 7d929ae30..b91ecd9b7 100644 --- a/src/module.ts +++ b/src/module.ts @@ -344,7 +344,7 @@ async function processCollectionItems(nuxt: Nuxt, collections: ResolvedCollectio } } -const proseTags = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'p', 'a', 'strong', 'em', 's', 'code', 'span'] +const proseTags = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'p', 'a', 'strong', 'em', 's', 'code', 'span', 'blockquote', 'pre', 'hr', 'img', 'ul', 'ol', 'li', 'table', 'thead', 'tbody', 'tr', 'th', 'td'] function getMappedTag(tag: string, additionalTags: Record = {}) { if (proseTags.includes(tag)) { return `prose-${tag}`