We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6dccf8 commit 06e3599Copy full SHA for 06e3599
src/theme/DocItem/Ignore/index.js
@@ -52,7 +52,7 @@ export default function DocItemContent({ children }) {
52
const shouldShowLLMButtons = allowedPaths.some((path) => location.pathname.startsWith(path));
53
54
return (
55
- <div className={ThemeClassNames.docs.docMarkdown}>
+ <div className={clsx(ThemeClassNames.docs.docMarkdown, 'markdown')}>
56
{syntheticTitle && <Heading as="h1">{syntheticTitle}</Heading>}
57
{shouldShowLLMButtons && <LLMButtons />}
58
<MDXContent>{children}</MDXContent>
0 commit comments