MDNotebook
extends Nodebook
Usage
Setup
const Nodebook = require('nodejs-notebook');
const readme = new Nodebook.MDNotebook('README');readme.note('Welcome to Project!');readme.createHeader('Installation');
// Adds a h1 called "Installation"
readme.createHeader('Usage', { type: '2'});
// Adds a h2 called "Usage"
readme.createHeader('About Us', { type: 3 });
// Adds a h3 called "About Us"
// Notice how both numbers and number strings are supported...Last updated