markdown-text-editor 0.1.2 → 0.1.4
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 +24 -2
- package/dist/index.css +1 -1788
- package/dist/index.css.map +1 -1
- package/dist/markdown-text-editor.css +1 -1788
- package/dist/markdown-text-editor.css.map +1 -1
- package/dist/markdown-text-editor.js +1 -1
- package/dist/markdown-text-editor.js.map +1 -1
- package/package.json +14 -5
- package/src/plugins/markdown/Toolbar/tools/PreviewTool.js +1 -1
- package/src/plugins/markdown/preview.js +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,29 @@
|
|
|
1
|
+
[](https://www.npmjs.com/package/markdown-text-editor)
|
|
2
|
+
[](https://github.com/nezanuha/markdown-text-editor/releases)
|
|
3
|
+
[](https://github.com/nezanuha/markdown-text-editor/blob/master/LICENSE)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
## MarkdownEditor Plugin Documentation
|
|
9
|
+
Transform textarea into powerful Markdown editor, and get/set value as standard HTML method.
|
|
2
10
|
|
|
11
|
+
[**DEMO**](https://codepen.io/Mohammed-Rashad/pen/pvoyqPQ)
|
|
12
|
+
|
|
13
|
+
---
|
|
3
14
|
Welcome to the documentation for the **MarkdownEditor Plugin** – an **open source project** offering the **best, simple, embeddable JavaScript Markdown editor plugin or library**. This powerful tool provides **real-time preview**, **syntax highlighting**, and **easy integration** into your projects. Whether you’re building a blog, note-taking app, or any content-rich website, this plugin delivers a robust and customizable markdown editing experience.
|
|
4
15
|
|
|
16
|
+
- ✅ **Actively Maintenaning**: The plugin receives regular updates to stay up to date.
|
|
17
|
+
- ✅ **User-Friendly**: It offers a WYSIWYG-style interface, making it great for non-technical users.
|
|
18
|
+
- ✅ **Simple Markdown _Get/Set_**: No complicated techniques are required to get and set the markdown content. You can use the <textarea> value or name attribute to get and set markdown content.
|
|
19
|
+
- ✅ **Tailwind CSS Support**: Built with TailwindCSS, and it will work with both Tailwind CSS and non-Tailwind CSS projects.
|
|
20
|
+
- ✅ **Responsive**: The editor is fully responsive, providing a seamless experience across all screen sizes.
|
|
21
|
+
- ✅ **RTL Support**: By default Right-to-Left (RTL) text is supported, making it ideal for languages like Arabic, Urdu, and Farsi.
|
|
22
|
+
- ✅ **Module Support**: Supports ESM, UMD, and CommonJS modules, making it easy to integrate with different module systems.
|
|
23
|
+
- ✅ **Live Preview Mode**: Watch your markdown content render while you type, providing a real-time preview of formatting, links, images, and more.
|
|
24
|
+
- ✅ **Automatic Dark Mode Support**: The editor follows your system's or website's dark mode settings, giving a seamless experience.
|
|
25
|
+
|
|
26
|
+
|
|
5
27
|
---
|
|
6
28
|
|
|
7
29
|
## Table of Contents
|
|
@@ -114,7 +136,7 @@ Alternatively, include the following CDN links in your HTML:
|
|
|
114
136
|
#### CSS:
|
|
115
137
|
|
|
116
138
|
```html
|
|
117
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/markdown-text-editor/dist/markdown-text-editor.
|
|
139
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/markdown-text-editor/dist/markdown-text-editor.css">
|
|
118
140
|
```
|
|
119
141
|
|
|
120
142
|
---
|
|
@@ -278,4 +300,4 @@ This project is released under the [MIT License](LICENSE).
|
|
|
278
300
|
|
|
279
301
|
---
|
|
280
302
|
|
|
281
|
-
Thank you for choosing the MarkdownEditor Plugin – your reliable, feature-rich solution for seamless markdown editing and content creation with **easy integration**. Happy coding!
|
|
303
|
+
Thank you for choosing the MarkdownEditor Plugin – your reliable, feature-rich solution for seamless markdown editing and content creation with **easy integration**. Happy coding!
|