react-docs-markdown
v0.8.0
Published
Convert the output of react-docgen to Markdown.
Downloads
713
Maintainers
Readme
React Docs Markdown
At the moment this is a simple package, that takes the output from react-docgen, and returns it as Markdown. You can then save it to a file, append more content, or whatever you need.
API
docsToMarkdown(api: object, name: string, options: Object)
- api - The output from react-docgen.
- name - Component name to set as page title
- options (Optional)
- excludeKeys
- excludeTypes
- excludeDescription
Example
var fs = require('fs');
var docsToMarkdown = require('react-docs-markdown');
var md = docsToMarkdown(api, 'Button');
// Use fs to write the markdown to dist
fs.writeFile('docs/button.md', md, (err) => {
if (err) throw err;
});
Publishing
Use np when publishing a new version to ensure everything is done correctly.