0.5.2 • Published 6 years ago

drakkar v0.5.2

Weekly downloads
7
License
MIT
Repository
github
Last release
6 years ago

Drakkar

Drakkar is pretty simple markdown site generator with only one feature. This feature is support of menu document named _.md which is visible on each page as a sidebar.

Installation

Install with npm

npm install drakkar -g

Structure

Default site structure should contain _.md document in the root directory. This file would be used as sidebar.

FS layout example:

.
|-- drakkar.js
|-- index.md
|-- license.md
|-- _.md
`-- sub
    `-- doc.md

Usage

Drakkar has two arguments. The first is sources directory (default is .) and the second is output directory (default is www-docs).

drakkar [options] [source]

-v,--verbose Verbose output
-d,--debug   Debug
-o,--output  Output directory. Default is `www-docs`.

If there is drakkar.js in sources dir then it will be used to modify drakkar instance.

Modifier script example:

module.exports = function() {
    this.renderer.plugins.date = function(date) {
        return new Date();
    };
}

License

MIT.

0.5.2

6 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.0

7 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.0

8 years ago