0.6.6 • Published 3 years ago

@material-docs/core v0.6.6

Weekly downloads
-
License
CC0-1.0
Repository
github
Last release
3 years ago

Material Docs

A React framework for easy creating documentation site in material design style

GitHub package.json version GitHub forks GitHub Repo stars GitHub pull requests GitHub top language npm GitHub issues

Overview

Material Docs is a React framework for material design style documentation. It allows easy page manipulation, has a built-in localization and search engine. Fully compatible with Markdown markup language.

Compatible with GitHub Pages and other hosts!

Installation.

With npm:

npm install @material-docs/core

With yarn:

yarn add @material-docs/core

Read installation guide

Usage

import React from "react";
import DocsLayout from "@material-docs/core/layout/DocsLayout";
import DocsPages from "@material-docs/core/components/DocsPages";
import DocsMenu from "@material-docs/core/components/DocsMenu";
import AutoDocsMenu from "@material-docs/core/components/AutoDocsMenu";
import DocsPage from "@material-docs/core/components/PagesGroup/DocsPage";
import PagesGroup from "@material-docs/core/components/PagesGroup/PagesGroup";


export default function MyApp() {
    return(
        <DocsLayout>
            <DocsMenu>
                <AutoDocsMenu/>
            </DocsMenu>
            <DocsPages>
                <PagesGroup name="Getting started">
                    {/*...*/}
                </PagesGroup>
                <PagesGroup name="Components">
                    <DocsPage
                        name="My page"
                        searchDescription="This is a page inside my documentation"
                    >
                        {/*...*/}
                    </DocsPage>
                </PagesGroup>
                <PagesGroup name="APIs">
                    {/*...*/}
                </PagesGroup>
            </DocsPages>
        </DocsLayout>
    );
}

Learn

Tutorials

You can learn Material Docs on practice with tutorials:

Documentation

If you want to get specifications and other info - visit Material Docs Documentation

Support

You can ask for support by email: help.materialdocs@gmail.com

Author

Danil Andreev | danssg08@gmail.com | https://github.com/DanilAndreev

0.6.6

3 years ago

0.6.3

3 years ago

0.6.4

3 years ago

0.6.2

3 years ago

0.6.1

3 years ago

0.6.0

3 years ago

0.5.8

4 years ago

0.5.7

4 years ago

0.5.5

4 years ago

0.5.4

4 years ago

0.5.3

4 years ago

0.5.2

4 years ago

0.4.9

4 years ago

0.4.8

4 years ago

0.5.0

4 years ago

0.5.1

4 years ago

0.4.7

4 years ago

0.4.6

4 years ago

0.4.5

4 years ago

0.4.4

4 years ago

0.4.3

4 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.8

4 years ago

0.3.7

4 years ago

0.3.6

4 years ago

0.3.5

4 years ago