markdown-text-editor 1.5.0 → 1.5.2
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/README.md +89 -74
- package/dist/markdown-text-editor.es.js +498 -457
- package/dist/markdown-text-editor.es.js.map +1 -1
- package/dist/markdown-text-editor.min.js +51 -51
- package/dist/markdown-text-editor.min.js.map +1 -1
- package/dist/markdown-text-editor.umd.js +51 -51
- package/dist/markdown-text-editor.umd.js.map +1 -1
- package/package.json +25 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-text-editor",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Lightweight Markdown editor with hybrid WYSIWYG mode, real-time preview, and zero-config setup. Works with any backend via native textarea.",
|
|
6
6
|
"funding": "https://ko-fi.com/nezanuha",
|
|
@@ -38,30 +38,25 @@
|
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|
|
40
40
|
"markdown",
|
|
41
|
-
"mde",
|
|
42
|
-
"markdown js library",
|
|
43
|
-
"markdown js plugin",
|
|
44
|
-
"editor",
|
|
45
41
|
"markdown editor",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
42
|
+
"wysiwyg",
|
|
43
|
+
"wysiwyg markdown",
|
|
44
|
+
"textarea markdown editor",
|
|
45
|
+
"embeddable markdown editor",
|
|
48
46
|
"markdown preview",
|
|
49
|
-
"markdown syntax",
|
|
50
|
-
"markdown plugin",
|
|
51
47
|
"rich text editor",
|
|
52
|
-
"
|
|
53
|
-
"markdown
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"markdown
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"RTL Support markdown editor"
|
|
48
|
+
"text editor",
|
|
49
|
+
"markdown plugin",
|
|
50
|
+
"rtl",
|
|
51
|
+
"rtl markdown",
|
|
52
|
+
"dark mode",
|
|
53
|
+
"find and replace",
|
|
54
|
+
"django markdown",
|
|
55
|
+
"laravel markdown",
|
|
56
|
+
"csp compatible",
|
|
57
|
+
"form markdown editor",
|
|
58
|
+
"live preview",
|
|
59
|
+
"mde"
|
|
65
60
|
],
|
|
66
61
|
"author": "Nezanuha",
|
|
67
62
|
"license": "MIT",
|
|
@@ -70,18 +65,18 @@
|
|
|
70
65
|
"url": "https://github.com/nezanuha/markdown-text-editor/issues"
|
|
71
66
|
},
|
|
72
67
|
"dependencies": {
|
|
73
|
-
"dompurify": "^3.4.
|
|
74
|
-
"marked": "~18.0.
|
|
68
|
+
"dompurify": "^3.4.12",
|
|
69
|
+
"marked": "~18.0.6"
|
|
75
70
|
},
|
|
76
71
|
"devDependencies": {
|
|
77
|
-
"@tailwindcss/postcss": "^4.3.
|
|
72
|
+
"@tailwindcss/postcss": "^4.3.2",
|
|
78
73
|
"@tailwindcss/typography": "^0.5.20",
|
|
79
|
-
"@tailwindcss/vite": "^4.3.
|
|
74
|
+
"@tailwindcss/vite": "^4.3.2",
|
|
80
75
|
"diff": "^9.0.0",
|
|
81
|
-
"frutjam": "^2.2.
|
|
82
|
-
"postcss": "^8.5.
|
|
83
|
-
"tailwindcss": "^4.3.
|
|
84
|
-
"vite": "^8.1.
|
|
76
|
+
"frutjam": "^2.2.3",
|
|
77
|
+
"postcss": "^8.5.18",
|
|
78
|
+
"tailwindcss": "^4.3.2",
|
|
79
|
+
"vite": "^8.1.4",
|
|
85
80
|
"vite-plugin-css-injected-by-js": "^5.0.1"
|
|
86
81
|
}
|
|
87
82
|
}
|