平原.md
# plain markdown
一些.mdx
# some mdx file
include './plain.md'
结果文件
# some mdx file
# plain markdown
如何用mdxjs做这样的事情?
哦,这实际上在他们的文档中是正确的。也称为转入。
import License from './license.md'
import Contributing from './docs/contributing.mdx'
# Hello, world!
<License />
---
<Contributing />