Describe the bug
Storybook/addon-notes
Currently the storybook/addon-notes expects one markdown file. It would be nice, if you could serve an array of markdown files.
If I simply concatenate two markdown files, the first line of formatted markdown will not get rendered properly.
To Reproduce
Steps to reproduce the behavior:
Text# headline{
notes: {markdown: markdownFileA + markdownFileB}
}
Expected behavior
The contents of both markdown files should be displayed correctly
Screenshots

System:
What if you do:
notes: { markdown: `${markdownFileA}\n\n${markdownFileB}` }
Thank you! That works. (But it is a workaround in my opinion)
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks!
What if you do:
notes: { markdown: `${markdownFileA}\n\n${markdownFileB}` }
Hi! I've been trying this but I can't make it work... I'm trying to render two different md files, but I don't see how!
Thanks and sorry for writing in a closed issue!
FYI addon-notes is being superceded by addon-docs, which fixes some problems with notes and is also more full-featured. It鈥檚 reached release candidate (RC) status and will be properly released soon. Please give it a try! https://medium.com/storybookjs/storybook-docspage-e185bc3622bf
Thanks @shilman! Can't wait to give it a try. I'm waiting for the development team to update Storybook so we can try the new addon. In the meantime, we thought it was a good idea to start migrating the documentation md files that we have currently on Catalog to each individual story on Storybook :) Thank you!!