Currently JSX does not work in the middle of components with `mdx-loader`, because it is using an old version of `@mdx-js/mdx`. This works ``` <span style={{ color: "red }}>I'm red</span> ``` But this doesn't, it breaks the build 😢 ``` I'm a paragraph in markdown <span style={{ color: "red" ]}>And I'm red</span> ``` This [should be supported with mdx version 1](https://github.com/mdx-js/mdx/issues/543) Upgrading to v1 of `@mdx-js/mdx` will fix this.