jxnblk / mdx-docs

:memo: Document and develop React components with MDX and Next.js

Home Page:https://mdx-docs.now.sh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MDX Docs

πŸ“ Document and develop React components with MDX and Next.js

https://mdx-docs.now.sh/

Build Status Downloads Version MIT License

npm init docs
  • πŸ“ Create documentation with markdown
  • βš›οΈ Import and use React components
  • βš™οΈ Component-based API
  • πŸ’» Live code examples
  • πŸ’… Customizable themes
  • β–² Built for Next.js

Getting Started

To create a new documentation site, run npm init docs and follow the prompts. Once the application has been generated, see the README.md for more documentation.

To add MDX Docs to an existing Next.js app, see the Custom Setup docs.

Using MDX

MDX lets you mix markdown with inline JSX to render React components. Write markdown as you normally would and use ES import syntax to use custom components in your document.

import { Box } from 'grid-styled'

# Hello MDX!

<Box
  p={3}
  bg='tomato'>
  This will render as a component
</Box>

Live Code

MDX Docs has built-in components to render JSX fenced code blocks as live previews with editable code, powered by react-live. To make a code block render as an editable example, use the .jsx language attribute (note the . prefix).

Live code example:

```.jsx
<button>Beep</button>
```

Components Scope

To add components to scope for use in the live code examples, pass a components object to the Layout component.

// example components
import React from 'react'

export default {
  Box: props => (
    <div
      {...props}
      style={{
        padding: '32px',
        backgroundColor: 'tomato'
      }}
    />
  )
}
// example _app.js
<Layout
  {...this.props}
  components={components}>
  <Layout.Main>
    <Component {...page} />
  </Layout.Main>
</Layout>

The components object can also include components to render the HTML elements in MDX.

Documentation


Prior Art

mdx-go, Compositor x0, mdx-deck, live-doc, Doctor Mark, docz

Related

Next.js, MDX, react-live

MIT License

About

:memo: Document and develop React components with MDX and Next.js

https://mdx-docs.now.sh

License:MIT License


Languages

Language:JavaScript 99.4%Language:Dockerfile 0.6%