blob: 35234301fbf1abddfa9e00a1861247158592f92f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// Import the original mapper
import MDXComponents from "@theme-original/MDXComponents";
import Highlight from "@site/src/components/Highlight";
export default {
// Re-use the default mapping
...MDXComponents,
// Map the "highlight" tag to our <Highlight /> component!
// `Highlight` will receive all props that were passed to `highlight` in MDX
highlight: Highlight,
};
|