@ckeditor/ckeditor5-markdown-gfm
Advanced tools
Comparing version 17.0.0 to 18.0.0
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 @@ |
{ | ||
"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 @@ | ||
} | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64707
2009
+ Added@ckeditor/ckeditor5-engine@18.0.0(transitive)
+ Added@ckeditor/ckeditor5-utils@18.0.0(transitive)
- Removed@ckeditor/ckeditor5-engine@17.0.0(transitive)
- Removed@ckeditor/ckeditor5-utils@17.0.0(transitive)