diff --git a/addons/notes/README.md b/addons/notes/README.md
index 719b6a6b2f1..3d65dbf83d8 100644
--- a/addons/notes/README.md
+++ b/addons/notes/README.md
@@ -3,18 +3,19 @@
[](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://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).
This addon works with Storybook for:
-- [React](https://github.com/storybooks/storybook/tree/master/app/react)
-- [React Native](https://github.com/storybooks/storybook/tree/master/app/react-native)
-- [Vue](https://github.com/storybooks/storybook/tree/master/app/vue)
+
+* [React](https://github.com/storybooks/storybook/tree/master/app/react)
+* [React Native](https://github.com/storybooks/storybook/tree/master/app/react-native)
+* [Vue](https://github.com/storybooks/storybook/tree/master/app/vue)

@@ -29,7 +30,7 @@ Then create a file called `addons.js` in your storybook config.
Add following content to it:
```js
-import '@storybook/addon-notes/register';
+import "@storybook/addon-notes/register";
```
Then write your stories like this:
@@ -49,25 +50,48 @@ storiesOf('Component', module)
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)(() =>