feat(core): add siteConfig.markdown.emoji config option to disable remark-emoji (#11282)

This commit is contained in:
Sébastien Lorber 2025-06-24 16:38:08 +02:00 committed by GitHub
parent 96c38d5fdd
commit e14caf1f78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 87 additions and 9 deletions

View file

@ -95,7 +95,7 @@ async function createProcessorFactory() {
headings,
{anchorsMaintainCase: options.markdownConfig.anchors.maintainCase},
],
emoji,
...(options.markdownConfig.emoji ? [emoji] : []),
toc,
];
}