[fix] prevent translations to math formulas and code-blocks
This commit is contained in:
5
components/mdx/Span.tsx
Normal file
5
components/mdx/Span.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
const Span = (props: JSX.IntrinsicElements["h2"]) => {
|
||||
return <span translate={props.className?.includes("katex") ? "no" : undefined} {...props} />;
|
||||
};
|
||||
|
||||
export default Span;
|
||||
Reference in New Issue
Block a user