mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-08 14:47:12 +02:00
* chore(v2): add netlify logo for open source plan * change logo * Update website/docusaurus.config.js Co-Authored-By: Alexey Pyltsyn <lex61rus@gmail.com> Co-authored-by: Alexey Pyltsyn <lex61rus@gmail.com>
46 lines
727 B
Markdown
46 lines
727 B
Markdown
# `@docusaurus/mdx-loader`
|
|
|
|
Docusaurus webpack loader of [MDX](https://github.com/mdx-js/mdx)
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
yarn add @docusaurus/mdx-loader
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
// ...
|
|
module: {
|
|
rules: [
|
|
// ...
|
|
{
|
|
test: /\.mdx?$/,
|
|
use: [
|
|
'babel-loader',
|
|
{
|
|
loader: '@docusaurus/mdx-loader',
|
|
options: {
|
|
// .. See options
|
|
},
|
|
},
|
|
],
|
|
},
|
|
];
|
|
}
|
|
```
|
|
|
|
## Options
|
|
|
|
### `rehypePlugins`
|
|
|
|
Array of rehype plugins to manipulate the MDXHAST
|
|
|
|
### `remarkPlugins`
|
|
|
|
Array of remark plugins to manipulate the MDXAST
|
|
|
|
### `metadataPath`
|
|
|
|
A function to provide the metadataPath depending on current loaded MDX path that will be exported as the MDX metadata.
|