Markdown
Markdown
块允许您在 MDX 文件中导入和包含纯 markdown。
导入 markdown 文件时,务必在导入路径上使用 ?raw
后缀,以确保内容按原样导入,而不是被评估
# Button
Primary UI component for user interaction
```js
import { Button } from "@storybook/design-system";
```
// DON'T do this, will error
import ReadMe from './README.md';
// DO this, will work
import ReadMe from './README.md?raw';
import { Markdown } from '@storybook/blocks';
# A header
<Markdown>{ReadMe}</Markdown>
Markdown
import { Markdown } from '@storybook/blocks';
Markdown
配置了以下属性
children
类型:string
提供要解析和显示的 markdown 格式的字符串。
options
指定传递给底层 markdown-to-jsx
库的选项。
为什么不直接导入 markdown?
从纯技术的角度来看,我们可以像这样将导入的 markdown 直接包含在 MDX 文件中
{/* THIS WON'T WORK, THIS IS TO DEMONSTRATE AN ERROR */}
import ReadMe from './README.md';
# A header
{ReadMe}
但是,纯 markdown 和 MDX2 之间存在细微的语法差异。MDX2 更严格,会将某些内容解释为 JSX 表达式。这是一个完全有效的 markdown 文件示例,如果由 MDX2 直接处理,则会中断
# A header
{ this is valid in a plain markdown file, but MDX2 will try to evaluate this as an expression }
<This is also valid, but MDX2 thinks this is a JSX component />
此外,MDX2 会将新行上的所有字符串都包裹在 p
标签或类似的标签中,这意味着内容在纯 .md
文件和 .mdx
文件之间的渲染方式会有所不同。
# A header
<div>
Some text
</div>
The example above will remain as-is in plain markdown, but MDX2 will compile it to:
# A header
<div>
<p>Some text</p>
</div>