[fix] prevent translations to math formulas and code-blocks

This commit is contained in:
PrinOrange
2024-08-25 22:45:34 +08:00
parent 2b04a51fda
commit bd1b158172
3 changed files with 14 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ import Blockquote from "./Blockquote";
import H2 from "./H2";
import ImageWrapper from "./ImageWrapper";
import PreWrapper from "./PreWrapper";
import Span from "./Span";
import TableWrapper from "./TableWrapper";
export const MDXComponentsSet = {
@@ -10,4 +11,5 @@ export const MDXComponentsSet = {
img: ImageWrapper,
h2: H2,
blockquote: Blockquote,
span: Span,
};