@startupjs/docs

0.55.22 • Public • Published

startupjs docs

MDX Documentation generator

Prerequisites

You must be using @startupjs/app for routing.

You can create a new application with the routing system using the routing template: npx startupjs init myapp -t routing

Installation

yarn add @startupjs/docs

Requirements

react: 16.9 - 17
react-native: >= 0.61.4 < 0.64.0
startupjs: >= 0.33.0

Usage

  1. Create the docs/ folder in your project root.

  2. Create docs/index.js file with the following content:

import docs from '@startupjs/docs'
export default docs({
  typography: {
    type: 'mdx',
    // different titles for mdx documentation in English and Russian
    title: {
      en: 'Typography',
      ru: 'Типографика'
    },
    // different components to display for English and Russian documentation
    component: {
      en: require('../components/typography/Typography.en.mdx').default,
      ru: require('../components/typography/Typography.ru.mdx').default
    }
  },
  cssGuide: {
    type: 'mdx',
    // the same title for both English and Russian mdx documentation
    title: 'Typography',
    // the same component to display for English and Russian documentation
    component: require('../components/typography/Typography.en.mdx').default
  },
  // docs in collapse
  // items have the same api as mdx docs
  components: {
    type: 'collapse',
    title: {
      en: 'Components',
      ru: 'Компоненты'
    },
    items: {
      Button: {
        type: 'mdx',
        title: {
          en: 'Button',
          ru: 'Кнопка'
        }
        component: {
          en: require('../components/Button/Button.en.mdx').default,
          ru: require('../components/Button/Button.ru.mdx').default
        }
      },
      Card: {
        type: 'mdx',
        title: 'Card',
        component: require('../components/Card/Card.en.mdx').default
      }
    }
  }
})
  1. Add client-side docs app to your Root/App.js file:

    import docs from '../docs'
    // ...
    <App
      apps={{ main, docs }}
      // ...
    />

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @startupjs/docs

Weekly Downloads

67

Version

0.55.22

License

none

Unpacked Size

41.7 kB

Total Files

51

Last publish

Collaborators

  • cray0000
  • yska
  • zag2art
  • fctsvirus
  • maestro.sc
  • byshock