mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
95 lines
3.0 KiB
Markdown
95 lines
3.0 KiB
Markdown
# Storybook Addon Notes
|
|
|
|
[](https://circleci.com/gh/storybooks/storybook)
|
|
[](https://www.codefactor.io/repository/github/storybooks/storybook)
|
|
[](https://snyk.io/test/github/storybooks/storybook/8f36abfd6697e58cd76df3526b52e4b9dc894847)
|
|
[](https://bettercodehub.com/results/storybooks/storybook) [](https://codecov.io/gh/storybooks/storybook)
|
|
[](https://now-examples-slackin-rrirkqohko.now.sh/)
|
|
[](#backers) [](#sponsors)
|
|
|
|
* * *
|
|
|
|
Storybook Addon Notes allows you to write notes (text or HTML) for your stories in [Storybook](https://storybook.js.org).
|
|
|
|
[Framework Support](../../ADDONS_SUPPORT.md)
|
|
|
|

|
|
|
|
### Getting Started
|
|
|
|
```sh
|
|
npm i --save-dev @storybook/addon-notes
|
|
```
|
|
|
|
Then create a file called `addons.js` in your storybook config.
|
|
|
|
Add following content to it:
|
|
|
|
```js
|
|
import '@storybook/addon-notes/register';
|
|
```
|
|
|
|
Then write your stories like this:
|
|
|
|
```js
|
|
import { storiesOf } from '@storybook/react';
|
|
import { withNotes } from '@storybook/addon-notes';
|
|
|
|
import Component from './Component';
|
|
|
|
storiesOf('Component', module)
|
|
.add('with some emoji', withNotes('A very simple component')(() => </Component>));
|
|
```
|
|
|
|
#### Using Markdown
|
|
|
|
To use markdown in your notes simply import a markdown file and use that in your note.
|
|
|
|
```js
|
|
import { storiesOf } from '@storybook/react';
|
|
import { withNotes } from '@storybook/addon-notes';
|
|
import Component from './Component';
|
|
import someMarkdownText from './someMarkdownText.md';
|
|
|
|
storiesOf('Component', module)
|
|
.add('With Markdown', withNotes(someMarkdownText)(() => <Component/>));
|
|
|
|
```
|
|
|
|
If you want to use Github flavored markdown inline, use `withMarkdownNotes`:
|
|
|
|
```js
|
|
import { storiesOf } from '@storybook/react';
|
|
import { withMarkdownNotes } from '@storybook/addon-notes';
|
|
import Component from './Component';
|
|
|
|
storiesOf('Component', module)
|
|
.add('With Markdown', withMarkdownNotes(`
|
|
# Hello World
|
|
|
|
This is some code showing usage of the component and other inline documentation
|
|
|
|
~~~js
|
|
<div>
|
|
hello world!
|
|
<Component/>
|
|
</div>
|
|
~~~
|
|
`)(() => <Component/>));
|
|
|
|
```
|
|
|
|
### Deprecated API
|
|
This API is slated for removal in 4.0
|
|
|
|
```js
|
|
import { WithNotes } from '@storybook/addon-notes';
|
|
|
|
storiesOf('Addon Notes', module)
|
|
.add('using deprecated API', () => (
|
|
<WithNotes notes="Hello">
|
|
<BaseButton onClick={action('clicked')} label="😀 😎 👍 💯" />
|
|
</WithNotes>
|
|
));
|
|
```
|