jstransformer-marked
Advanced tools
Comparing version 0.0.0 to 0.0.1
@@ -5,5 +5,6 @@ 'use strict'; | ||
exports.name = 'marked'; | ||
exports.outputFormat = 'html'; | ||
exports.compile = function (str, options) { | ||
exports.render = function (str, options) { | ||
return marked(str, options); | ||
}; |
{ | ||
"name": "jstransformer-marked", | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"description": "Transform markdown into HTML using marked", | ||
@@ -20,2 +20,2 @@ "keywords": [ | ||
"license": "MIT" | ||
} | ||
} |
@@ -11,3 +11,3 @@ 'use strict'; | ||
var output = transform.compile(input); | ||
var output = transform.render(input); | ||
fs.writeFileSync(__dirname + '/output.html', output); | ||
@@ -14,0 +14,0 @@ assert(output === expected, 'output.html should equal expected.html'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2977
17