tiny-markdown-editor 0.1.5 → 0.1.6
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 +2 -2
- package/dist/tiny-mde.js +2041 -4500
- package/dist/tiny-mde.min.js +1 -1
- package/dist/tiny-mde.tiny.js +1 -1
- package/lib/TinyMDE.js +1405 -1591
- package/lib/TinyMDECommandBar.js +144 -226
- package/lib/grammar.js +27 -82
- package/lib/index.js +2 -3
- package/lib/svg/svg.js +15 -17
- package/lib/tiny.js +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -43,8 +43,8 @@ Bundle the JavaScript with your favorite bundler like Webpack or Rollup to ensur
|
|
|
43
43
|
You can simply include the JavaScript and CSS files from Unpkg on your website, using the following code:
|
|
44
44
|
|
|
45
45
|
```html
|
|
46
|
-
<script src="https://unpkg.com/tiny-markdown-editor@0.1.
|
|
47
|
-
<link rel="stylesheet" type="text/css" href="https://unpkg.com/tiny-markdown-editor@0.1.
|
|
46
|
+
<script src="https://unpkg.com/tiny-markdown-editor@0.1.6/dist/tiny-mde.min.js"></script>
|
|
47
|
+
<link rel="stylesheet" type="text/css" href="https://unpkg.com/tiny-markdown-editor@0.1.6/dist/tiny-mde.min.css" />
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
### Self-host
|