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

@joplin/turndown-plugin-gfm

Package Overview
Dependencies
Maintainers
3
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@joplin/turndown-plugin-gfm - npm Package Compare versions

Comparing version 1.0.56 to 1.0.57

2

lib/turndown-plugin-gfm.cjs.js

@@ -221,3 +221,3 @@ 'use strict';

const child = node.childNodes[i];
if (types === 'code' && isCodeBlock_(child)) return true;
if (types === 'code' && isCodeBlock_ && isCodeBlock_(child)) return true;
if (types.includes(child.nodeName)) return true;

@@ -224,0 +224,0 @@ if (nodeContains(child, types)) return true;

@@ -7,3 +7,3 @@ {

},
"version": "1.0.56",
"version": "1.0.57",
"author": "Dom Christie",

@@ -15,3 +15,3 @@ "main": "lib/turndown-plugin-gfm.cjs.js",

"standard": "17.1.0",
"turndown": "7.1.3",
"turndown": "7.2.0",
"turndown-attendant": "0.0.3"

@@ -46,3 +46,3 @@ },

},
"gitHead": "a48c4ba93fb438c0dc190a61762f4bed44b946fe"
"gitHead": "189ba7795a8af01a6ffd3607c92a271d69b68783"
}

@@ -51,4 +51,15 @@ # turndown-plugin-gfm

### Typescript
To use this in a typescript project, add this to a `declarations.d.ts` file, as described in https://www.npmjs.com/package/@joplin/turndown, and then add:
```ts
declare module "@joplin/turndown-plugin-gfm" {
export const gfm: any;
// Add other named exports if necessary
}
```
## License
turndown-plugin-gfm is copyright © 2017+ Dom Christie and released under the MIT license.
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