1.0.3 • Published 5 years ago

@stendahls/markpage v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

MarkPage

Throw in markdown, get a self-contained HTML file in return.

Install

$ npm install markpage

Usage

const markpage = require( '@stendahls/markpage' );

const markdown = fs.readFileSync( './readme.md', 'utf8' );
const html = markpage( markdown, 'MyTitle' );

API

Returns a full HTML page with styling as a string.

markpage( markdownString, options );

title

Type: string
Default: 'Index'

minify

Minify the CSS & JS
Type: Boolean
Default: true