0.1.1 • Published 5 years ago

yaml-doc-bootstrap v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

yaml-doc-bootstrap

Bootstrap template for YAML-based software documentation generator.

Examples of output:

yaml-doc-bootstrap is available as npm package.

npm i yaml-doc-bootstrap

To apply the template, create a simple NodeJS script like this:

const fs = require("fs"),
    path = require("path"),
    parseYamlDocProject = require("yaml-doc").default,
    applyBootstrapTemplate = require("yaml-doc-bootstrap").default;

const project = parseYamlDocProject(path.resolve(__dirname, "project.yaml")),
  dist = path.resolve(__dirname, "dist");
fs.rmdirSync(dist, {recursive: true});
applyBootstrapTemplate(project, dist);

Create yaml-doc-compatible project.yaml in the same folder. To compile the documentation, run:

node compile.js

Project license is MIT.