0.0.15 • Published 1 year ago

rise-docs v0.0.15

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year 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

1 year ago

0.0.15

1 year ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago