GitXplorerGitXplorer
g

roaster

public
30 stars
19 forks
1 issues

Commits

List of commits on branch master.
Unverified
ed0158a2b648462b7c2c8529e1ce73f81d73c00a

Merge pull request #20 from Zirro/js-yaml-3-6-1

ggjtorikian committed 8 years ago
Unverified
0a6fafab5449ff6d9a98ddc93765b91c02938f7e

Use js-yaml 3.6.1

ZZirro committed 8 years ago
Unverified
1dccdb7284391612555a98e936e48fbaed015a7e

release 1.2.0

ggjtorikian committed 10 years ago
Unverified
d9b5b101401a40319f96795d910df36ab8feed21

Merge pull request #19 from zsalzbank/tasklist_options

ggjtorikian committed 10 years ago
Unverified
a368c1831f55008cc75f456632f8b7bcc19210bd

add options for task-list

committed 10 years ago
Unverified
561569ef042607f8409600c50756299df0685d73

1.1.3

kkevinsawicki committed 10 years ago

README

The README file for this repository.

Asynchronously convert a Markdown file into HTML. WOW!

You can specify either the contents of a file, or, the path to a file to read.

Usage

var roaster = require("roaster");
var fs = require("fs");
var options = {}

roaster("./markdown.md", options, function(err, contents) {
	fs.writeFileSync("./markdown.html", contents, "utf8");
});

Options

The second parameter, options, is optional. Any options defined here are passed to the dependent libraries for use in their own systems.

If you pass options.isFile, the first parameter is assumed to be a file path. By default, this is false, which means that the first parameter is an actual string of Markdown.

Libraries used