New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@notable/html2markdown

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@notable/html2markdown - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

6

dist/types.d.ts

@@ -12,5 +12,11 @@ declare type Options = {

strongDelimiter?: '__' | '**';
parser?: Parser;
};
declare type Parser = {
new (): {
parseFromString: (html: string, mimeType?: string) => Document;
};
};
declare type TurndownOptions = import('turndown').Options;
declare type TurndownService = import('turndown');
export type { Options, TurndownOptions, TurndownService };

2

package.json

@@ -5,3 +5,3 @@ {

"description": "A small function for converting HTML to Markdown.",
"version": "2.0.0",
"version": "2.0.1",
"type": "module",

@@ -8,0 +8,0 @@ "main": "dist/index.js",

@@ -14,5 +14,12 @@

linkStyle?: 'inlined' | 'referenced',
strongDelimiter?: '__' | '**'
strongDelimiter?: '__' | '**',
parser?: Parser
};
type Parser = {
new (): {
parseFromString: ( html: string, mimeType?: string ) => Document
}
};
type TurndownOptions = import ( 'turndown' ).Options;

@@ -19,0 +26,0 @@

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