Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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 0.0.0 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');

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc