htmlbook v0.1.10
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_FILEAdditionally, 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.jsThe 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.js10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago