Skip to content

Web5design/htmlbook.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

htmlbook.js

Converts Markdown to HTMLBook.

Installation

Install with npm: npm install -g htmlbook

Usage

Node.js

Within Node, htmlbook.js works on strings.

var htmlbook = require('htmlbook');
var htmlbook_output = htmlbook("source content").parse();

To use htmlbook.js with a file, in Node.js do the following:

var fs = require('fs');
var htmlbook = require('htmlbook');

var htmlbook_output;

fs.readFile('path/to/file.md', 'utf-8', function (error, data) {
  if (error)
    return error;

  htmlbook_output = htmlbook(data).parse();
})

Command Line

$ htmlbook -s SOURCE_FILE -o OUTPUT_FILE

Additionally, type $ htmlbook --help for all options.

Options

Below is a list of available options, default value is emphasized.

  • fragment: false or true
  • level: chapter or book
  • debug: boolean -- default for command line is 'false'

Testing

There are two suites of tests for this repository. The first is spec/htmlbook_spec.js and tests the package for expected output. Run this test with the following:

$ jasmine-node spec/htmlbook_spec.js

The second test suite checks to be sure that the file being tested in htmlbook_spec are in fact being output to valid HTMLBook. It's no use writing tests that pass unless they pass on valid output. These tests are separated because the validation takes longer.

$ jasmine-node spec/validation_spec.js

Releases

No releases published

Packages

No packages published