Socket
Socket
Sign inDemoInstall

marked

Package Overview
Dependencies
Maintainers
1
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

marked - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

8

lib/marked.js

@@ -194,2 +194,3 @@ /**

code: /^`([^`]+)`|^``([^\0]+?)``/,
br: /^ {2,}\n(?!\s*$)/,
text: /^/

@@ -208,2 +209,3 @@ };

'code',
'br',
'text'

@@ -226,3 +228,4 @@ ];

('em')
('code');
('code')
('br');

@@ -340,2 +343,5 @@ return new

break;
case 'br':
out += '<br>';
break;
case 'text':

@@ -342,0 +348,0 @@ out += escape(cap[0]);

4

package.json
{
"name": "marked",
"description": "a fast markdown parser",
"description": "A markdown parser built for speed",
"author": "Christopher Jeffrey",
"version": "0.0.6",
"version": "0.0.7",
"main": "./lib/marked.js",

@@ -7,0 +7,0 @@ "bin": { "marked": "./bin/marked" },

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