0.0.15 • Published 2 years ago

rise-docs v0.0.15

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Rise Docs

The goal of rise-docs is to make building a documentation site as easy and low friction as possible. A rise-docs project consists of 2 things:

  • a rise.mjs file
  • markdown files

Installation

npm i -g rise-docs

Usage

You can generate html files from a docs project using the generate command

rise-docs generate

You can deploy a docs project using the deploy command

rise-docs deploy

Configuration

A rise.mjs file must have a name and a sidebar defined, and can optionally have a logo defined:

// rise.mjs
export default {
    // required
    name: 'Rise Docs',
    sidebar: {
        PageOne: 'index.md',
        PageTwo: 'other.md'
    },
    // optional
    logo: '<svg>...</svg>'
}

The sidebar is a map, the key is the name that will show up on the sidebar menu, and the value is the md file

0.0.14

2 years ago

0.0.15

2 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago