[go: nahoru, domu]

Skip to content

thebuilder/react-docs-markdown

Repository files navigation

React Docs Markdown

Greenkeeper badge

Build Status

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.

About

Convert the output of react-docgen into markdown

Resources

License

Stars

Watchers

Forks

Packages

No packages published