You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

jstransformer-marked

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jstransformer-marked - npm Package Compare versions

Comparing version

to
0.0.1

3

index.js

@@ -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');