Skip to content

Commit

Permalink
Merge pull request #26781 from storybookjs/docs_fix_MDX
Browse files Browse the repository at this point in the history
Docs: MDX minor fixes
(cherry picked from commit cd5d79e)
  • Loading branch information
jonniebigodes authored and storybook-bot committed Apr 10, 2024
1 parent 8733fad commit 077da6b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 25 deletions.
21 changes: 14 additions & 7 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,15 +347,17 @@ Vue 2 entered [End of Life](https://v2.vuejs.org/lts/) (EOL) on December 31, 202

<!-- prettier-ignore-end -->

## Why aren't my code blocks highlighted with Storybook MDX
## Why aren't my code blocks highlighted with Storybook MDX?

Out of the box, Storybook provides syntax highlighting for a set of languages (e.g., Javascript, Markdown, CSS, HTML, Typescript, GraphQL) you can use with your code blocks. Currently, there's a known limitation when you try and register a custom language to get syntax highlighting. We're working on a fix for this And will update this section once it's available.
Out of the box, Storybook provides syntax highlighting for a set of languages (e.g., Javascript, Markdown, CSS, HTML, Typescript, GraphQL) you can use with your code blocks. Currently, there's a known limitation when you try to register a custom language to get syntax highlighting. We're working on a fix for this and will update this section once it's available.
## Why aren't my MDX stories working in Storybook?
## Why aren't my MDX styles working in Storybook?

MDX can be picky about how your code is formatted with line breaks. This is especially true with code blocks. For example, this will break:
Writing documentation with MDX can be troublesome, especially regarding how your code is formatted when using line breaks with code blocks. For example, this will break:

```
<!-- prettier-ignore-start -->

```mdx
<style>{`
.class1 {
...
Expand All @@ -365,12 +367,15 @@ MDX can be picky about how your code is formatted with line breaks. This is espe
...
}
`}</style>
```

<!-- prettier-ignore-end -->

But this will work:

```
<!-- prettier-ignore-start -->

```mdx
<style>
{`
.class1 {
Expand All @@ -384,6 +389,8 @@ But this will work:
</style>
```

<!-- prettier-ignore-end -->

See the following [issue](https://github.com/mdx-js/mdx/issues/1945) for more information.

## Why are my mocked GraphQL queries failing with Storybook's MSW addon?
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

14 changes: 5 additions & 9 deletions docs/writing-docs/mdx.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The `Meta` block defines where the document will be placed in the sidebar. In th

<!-- prettier-ignore-end -->

MDX supports standard markdown ([commonmark](https://commonmark.org/)) by default and can be extended to support [GitHub-flavored markdown (GFM)](https://github.github.com/gfm) and other extensions (see [Breaking changes](#breaking-changes), below).
MDX supports standard markdown (["commonmark"](https://commonmark.org/)) by default and can be extended to support [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/) and other extensions (see the [Troubleshooting section](#troubleshooting) to learn more about some of the current limitations).

<!-- prettier-ignore-start -->

Expand Down Expand Up @@ -325,11 +325,7 @@ By applying this pattern with the Controls addon, all anchors will be ignored in

### Markdown tables aren't rendering correctly

As of MDX 2, GFM is no longer included by default:

“We turned off GFM features in MDX by default. GFM extends CommonMark to add autolink literals, footnotes, strikethrough, tables, and task lists. If you do want these features, you can use a plugin. How to do so is described in [our guide on GFM](https://mdxjs.com/guides/gfm/).”

In Storybook, you can apply MDX options, including plugins, in the main configuration file:
If you're extending your documentation to include specific features (e.g., tables, footnotes), you may run into some issues rendering them correctly using the current MDX version supported by Storybook. We recommend enabling the [`remark-gfm`](https://github.com/remarkjs/remark-gfm) plugin in your configuration file (i.e., [`.storybook/main.js|ts`](../configure/index.md)) to render them correctly.

<!-- prettier-ignore-start -->

Expand All @@ -344,7 +340,7 @@ paths={[

<Callout variant="info" icon="💡">

The [`remark-gfm`](https://github.com/remarkjs/remark-gfm) package isn't provided by default during migration. We recommend installing it as a development dependency if you use its features.
The [`remark-gfm`](https://github.com/remarkjs/remark-gfm) package is not included by default with Storybook and must be installed separately as a development dependency. To learn more about how to use it and the other breaking changes introduced by MDX, refer to the [GFM guide](https://mdxjs.com/guides/gfm/) and the [migration guide](https://mdxjs.com/migrating/v2/) provided by the MDX team for more information.

</Callout>

Expand All @@ -354,11 +350,11 @@ As Storybook relies on [MDX 3](https://mdxjs.com/) to render documentation, some

#### Storybook doesn't create documentation for my component stories

If you run into a situation where Storybook is not able to detect and render the documentation for your component stories, it may be due to a misconfiguration in your Storybook. Check your configuration file (i.e., `.storybook/main.js|ts`) and ensure the `stories` configuration element provides the correct path to your stories location(e.g., `../src/**/*.stories.@(js|jsx|mjs|ts|tsx)`).
If you run into a situation where Storybook is not able to detect and render the documentation for your component stories, it may be due to a misconfiguration in your Storybook. Check your configuration file (i.e., `.storybook/main.js|ts`) and ensure the `stories` configuration element provides the correct path to your stories location (e.g., `../src/**/*.stories.@(js|jsx|mjs|ts|tsx)`).

### The migration seems flaky and keeps failing

By default, running the [migration command](#automigration) will try and migrate all existing MDX files in your project according to the MDX 2 specification. However, this might not always be possible, and you might run into issues during the migration. To help you troubleshoot those issues, we've prepared some recommendations that might help you.
By default, running the [migration](../configure/upgrading.md) command will prompt you to update the existing MDX files in your project according to the MDX version supported by Storybook. However, this might be a disruptive process, specifically if you're upgrading from a previous version of Storybook where you were using the legacy MDX format. To help you troubleshoot those issues, we've prepared some recommendations that might help you.

Start by running the following command inside your project directory:

Expand Down

0 comments on commit 077da6b

Please sign in to comment.