@ckeditor/ckeditor5-markdown-gfm 45.2.1-alpha.9 → 46.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +18 -5
- package/build/markdown-gfm.js +1 -1
- package/dist/index.js +157 -150
- package/dist/index.js.map +1 -1
- package/package.json +20 -10
- package/src/gfmdataprocessor.d.ts +3 -3
- package/src/gfmdataprocessor.js +8 -8
- package/src/html2markdown/html2markdown.d.ts +9 -12
- package/src/html2markdown/html2markdown.js +79 -117
- package/src/index.d.ts +5 -4
- package/src/index.js +5 -4
- package/src/markdown.d.ts +1 -1
- package/src/markdown.js +3 -3
- package/src/markdown2html/markdown2html.d.ts +2 -3
- package/src/markdown2html/markdown2html.js +83 -34
- package/src/pastefrommarkdownexperimental.d.ts +1 -1
- package/src/pastefrommarkdownexperimental.js +3 -3
package/LICENSE.md
CHANGED
@@ -18,11 +18,24 @@ Where not otherwise indicated, all CKEditor content is authored by CKSource engi
|
|
18
18
|
|
19
19
|
The following libraries are included in CKEditor under the [MIT license](https://opensource.org/licenses/MIT):
|
20
20
|
|
21
|
-
* @types/
|
22
|
-
*
|
23
|
-
*
|
24
|
-
*
|
25
|
-
*
|
21
|
+
* @types/hast - Copyright (c) Microsoft Corporation.
|
22
|
+
* hast-util-to-html - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
23
|
+
* hast-util-to-mdast - Copyright (c) Titus Wormer <tituswormer@gmail.com> and Copyright (c) Seth Vincent <sethvincent@gmail.com>
|
24
|
+
* hastscript - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
25
|
+
* rehype-remark - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
26
|
+
* remark-breaks - Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
|
27
|
+
* remark-gfm - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
28
|
+
* remark-parse - Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
29
|
+
* remark-rehype - Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
30
|
+
* remark-stringify - Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
31
|
+
* unified - Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
32
|
+
* unist-util-visit - Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
33
|
+
|
34
|
+
The following libraries are included in CKEditor under the [ISC license](https://opensource.org/license/isc-license-txt):
|
35
|
+
|
36
|
+
* hast-util-from-dom - Copyright (c) Keith McKnight <keith@mcknig.ht>
|
37
|
+
* rehype-dom-parse - Copyright (c) 2018 Keith McKnight <keith@mcknig.ht>
|
38
|
+
* rehype-dom-stringify - Copyright (c) 2018 Keith McKnight <keith@mcknig.ht>
|
26
39
|
|
27
40
|
Trademarks
|
28
41
|
----------
|