Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 447 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 447 Bytes

Pug-doc HTML

Generates HTML output from a Pug-doc stream or input pug-doc json.

Command Line

pug-doc-html --input pug-doc.json --output output.html
pug-doc input.jade | pug-doc-html --output output.html

Node

var stream = new PugDocHTML({
    output: 'output.html',
    input: 'data.json'
});

stream.on('complete', function(){
  console.log('complete');
});