mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
address issue with MDX stories
This commit is contained in:
parent
7b26dd5695
commit
ab2d8ffc30
@ -246,3 +246,8 @@ If you don't want to run the command above frequently. Add <code>http-server</co
|
||||
### Can I use Storybook with Vue 3
|
||||
|
||||
Yes, Storybook support for Vue 3 is currently being finalized and will be released in version 6.2. See the [install page](../get-started/install.md) for instructions.
|
||||
|
||||
|
||||
### Why are my MDX stories not working in IE11?
|
||||
|
||||
Currently there's an issue when using MDX stories with IE11. This issue does <strong>not</strong> apply to [writing documentation with MDX](../writing-docs/mdx.md#documentation-only-mdx) or [DocsPage](../writing-docs/docs-page.md). If you're interested in helping us fix this issue, read our <a href="https://github.com/storybookjs/storybook/blob/next/CONTRIBUTING.md">Contribution guidelines</a> and submit a pull request.
|
@ -2,6 +2,12 @@
|
||||
title: 'Preview and build docs'
|
||||
---
|
||||
|
||||
<div class="aside">
|
||||
|
||||
💡 <strong>NOTE</strong>: Currently there's an issue when using MDX stories with IE11. This issue does <strong>not</strong> apply to [writing documentation with MDX](./mdx.md#documentation-only-mdx) or [DocsPage](./docs-page.md). If you're interested in helping us fix this issue, read our <a href="https://github.com/storybookjs/storybook/blob/next/CONTRIBUTING.md">Contribution guidelines</a> and submit a pull request.
|
||||
|
||||
</div>
|
||||
|
||||
Storybook allows you to create rich and extensive [documentation](./introduction.md) that will help you and any other stakeholder involved in the development process. Out of the box you have the tooling required to not only write it but also to preview it and build it.
|
||||
|
||||
## Preview Storybook's documentation
|
||||
|
@ -2,6 +2,12 @@
|
||||
title: 'Doc Blocks'
|
||||
---
|
||||
|
||||
<div class="aside">
|
||||
|
||||
💡 <strong>NOTE</strong>: Currently there's an issue when using MDX stories with IE11. This issue does <strong>not</strong> apply to [writing documentation with MDX](./mdx.md#documentation-only-mdx) or [DocsPage](./docs-page.md). If you're interested in helping us fix this issue, read our <a href="https://github.com/storybookjs/storybook/blob/next/CONTRIBUTING.md">Contribution guidelines</a> and submit a pull request.
|
||||
|
||||
</div>
|
||||
|
||||
Doc Blocks are the building blocks of Storybook documentation pages. By default, [DocsPage](./docs-page.md) uses a combination of the blocks below to build a page for each of your components automatically.
|
||||
|
||||
Custom [addons](../addons/writing-addons.md) can also provide their own doc blocks.
|
||||
|
@ -2,6 +2,13 @@
|
||||
title: 'DocsPage'
|
||||
---
|
||||
|
||||
<div class="aside">
|
||||
|
||||
💡 <strong>NOTE</strong>: Currently there's an issue when using MDX stories with IE11. This issue does <strong>not</strong> apply to [writing documentation with MDX](./mdx.md#documentation-only-mdx) or DocsPage. If you're interested in helping us fix this issue, read our <a href="https://github.com/storybookjs/storybook/blob/next/CONTRIBUTING.md">Contribution guidelines</a> and submit a pull request.
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
When you install [Storybook Docs](https://github.com/storybookjs/storybook/blob/master/addons/docs/README.md), DocsPage is the zero-config default documentation that all stories get out of the box. It aggregates your stories, text descriptions, docgen comments, args tables, and code examples into a single page for each component.
|
||||
|
||||
The best practice for docs is for each component to have its own set of documentation and stories.
|
||||
|
@ -2,6 +2,12 @@
|
||||
title: 'How to document components'
|
||||
---
|
||||
|
||||
<div class="aside">
|
||||
|
||||
💡 <strong>NOTE</strong>: Currently there's an issue when using MDX stories with IE11. This issue does <strong>not</strong> apply to [writing documentation with MDX](./mdx.md#documentation-only-mdx) or [DocsPage](./docs-page.md). If you're interested in helping us fix this issue, read our <a href="https://github.com/storybookjs/storybook/blob/next/CONTRIBUTING.md">Contribution guidelines</a> and submit a pull request.
|
||||
|
||||
</div>
|
||||
|
||||
When you write component stories during development, you also create basic documentation to revisit later.
|
||||
|
||||
Storybook gives you tools to expand this basic documentation with prose and layout that feature your components and stories prominently. That allows you to create UI library usage guidelines, design system sites, and more.
|
||||
|
@ -2,6 +2,12 @@
|
||||
title: 'MDX'
|
||||
---
|
||||
|
||||
<div class="aside">
|
||||
|
||||
💡 <strong>NOTE</strong>: Currently there's an issue when using MDX stories with IE11. This issue does <strong>not</strong> apply to [writing documentation with MDX](#documentation-only-mdx) or [Docs page](./docs-page.md). If you're interested in helping us fix this issue, read our <a href="https://github.com/storybookjs/storybook/blob/next/CONTRIBUTING.md">Contribution guidelines</a> and submit a pull request.
|
||||
|
||||
</div>
|
||||
|
||||
MDX is a [standard file format](https://mdxjs.com/) that combines Markdown with JSX. This means you can use Markdown’s terse syntax (such as # heading) for your documentation, write stories that compile to our component story format, and freely embed JSX component blocks at any point in the file. All at once.
|
||||
|
||||
In addition, you can write pure documentation pages in MDX and add them to Storybook alongside your stories.
|
||||
|
Loading…
x
Reference in New Issue
Block a user