tiny-markdown-editor 0.1.4 → 0.1.5
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/dist/tiny-mde.css +2 -6
- package/dist/tiny-mde.js +5488 -5066
- package/dist/tiny-mde.min.css +1 -1
- package/dist/tiny-mde.min.js +1 -1
- package/dist/tiny-mde.tiny.js +1 -1
- package/lib/TinyMDE.js +265 -506
- package/lib/TinyMDECommandBar.js +27 -102
- package/lib/grammar.js +102 -111
- package/lib/index.js +1 -3
- package/lib/svg/svg.js +1 -0
- package/lib/tiny.js +1 -2
- package/package.json +17 -17
package/dist/tiny-mde.css
CHANGED
|
@@ -86,14 +86,12 @@
|
|
|
86
86
|
|
|
87
87
|
.TMImage {
|
|
88
88
|
text-decoration: underline;
|
|
89
|
-
|
|
90
|
-
text-decoration-color: #00ff00;
|
|
89
|
+
text-decoration-color: #00ff00;
|
|
91
90
|
}
|
|
92
91
|
|
|
93
92
|
.TMLink {
|
|
94
93
|
text-decoration: underline;
|
|
95
|
-
|
|
96
|
-
text-decoration-color: #0000ff;
|
|
94
|
+
text-decoration-color: #0000ff;
|
|
97
95
|
}
|
|
98
96
|
|
|
99
97
|
.TMLinkLabel {
|
|
@@ -149,8 +147,6 @@
|
|
|
149
147
|
box-sizing: content-box;
|
|
150
148
|
display:flex;
|
|
151
149
|
-webkit-user-select: none;
|
|
152
|
-
-moz-user-select: none;
|
|
153
|
-
-ms-user-select: none;
|
|
154
150
|
user-select: none;
|
|
155
151
|
overflow-x: scroll;
|
|
156
152
|
overflow-y: hidden;
|