-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwrap-root-element.js
37 lines (36 loc) · 1.13 KB
/
wrap-root-element.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React from "react";
import { MDXProvider } from "@mdx-js/react";
import TeX from "@matejmazur/react-katex";
import { Code } from "./src/components/code";
import { preToCodeBlock } from "mdx-utils";
// components is its own object outside of render so that the references to
// components are stable
const components = {
pre: (preProps) => {
const props = preToCodeBlock(preProps);
// if there's a codeString and some props, we passed the test
if (props) {
return <Code {...props} />;
} else {
// it's possible to have a pre without a code in it
return <pre {...preProps} />;
}
},
div: (props) => {
if (props?.className?.includes("math-display")) {
require("katex/dist/katex.min.css");
return <TeX block math={props.children} />;
}
return <div {...props} />;
},
span: (props) => {
if (props?.className?.includes("math-inline")) {
require("katex/dist/katex.min.css");
return <TeX math={props.children} />;
}
return <span {...props} />;
},
};
export const wrapRootElement = ({ element }) => (
<MDXProvider components={components}>{element}</MDXProvider>
);