Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-markdown-gfm

Package Overview
Dependencies
Maintainers
1
Versions
706
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-markdown-gfm - npm Package Compare versions

Comparing version 17.0.0 to 18.0.0

11

CHANGELOG.md
Changelog
=========
## [18.0.0](https://github.com/ckeditor/ckeditor5-markdown-gfm/compare/v17.0.0...v18.0.0) (2020-03-19)
### MAJOR BREAKING CHANGES
* The `GFMDataProcessor()` requires the view document instance as its first parameter.
### Other changes
* Adjusted the data processor implementation to changes in `ckeditor5-engine`. See [ckeditor/ckeditor5#6091](https://github.com/ckeditor/ckeditor5/issues/6091). ([ce2cc01](https://github.com/ckeditor/ckeditor5-markdown-gfm/commit/ce2cc01))
## [17.0.0](https://github.com/ckeditor/ckeditor5-markdown-gfm/compare/v16.0.0...v17.0.0) (2020-02-19)

@@ -5,0 +16,0 @@

4

package.json
{
"name": "@ckeditor/ckeditor5-markdown-gfm",
"version": "17.0.0",
"version": "18.0.0",
"description": "GitHub Flavored Markdown data processor for CKEditor 5.",

@@ -13,3 +13,3 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-engine": "^17.0.0"
"@ckeditor/ckeditor5-engine": "^18.0.0"
},

@@ -16,0 +16,0 @@ "devDependencies": {

@@ -24,3 +24,8 @@ /**

export default class GFMDataProcessor {
constructor() {
/**
* Creates a new instance of the Markdown data processor class.
*
* @param {module:engine/view/document~Document} document
*/
constructor( document ) {
/**

@@ -32,3 +37,3 @@ * HTML data processor used to process HTML produced by the Markdown-to-HTML converter and the other way.

*/
this._htmlDP = new HtmlDataProcessor();
this._htmlDP = new HtmlDataProcessor( document );
}

@@ -67,2 +72,1 @@

}
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