@opositatest/markdown-text-editor 1.3.0 → 1.4.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/README.md +9 -0
- package/dist/editor.css +1 -1
- package/dist/editor.js +10625 -10483
- package/dist/react/index.js +9173 -9031
- package/dist/react/markdown-text-editor.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,6 +97,15 @@ Load via CDN (no build step required):
|
|
|
97
97
|
|
|
98
98
|
`width` and `height` accept any valid CSS size, such as `320px`, `40rem`, or `100%`.
|
|
99
99
|
|
|
100
|
+
### Formatting toolbar
|
|
101
|
+
|
|
102
|
+
Selecting text opens the formatting toolbar. Its **Quitar formato** action converts selected
|
|
103
|
+
text blocks to paragraphs and removes inline styles, colors, code formatting, and links in one
|
|
104
|
+
undoable operation. Non-text blocks such as images, tables, and formulas are left unchanged.
|
|
105
|
+
|
|
106
|
+
The action tooltip also shows the browser shortcut for pasting without source formatting:
|
|
107
|
+
`Ctrl/⌘ + Shift + V`.
|
|
108
|
+
|
|
100
109
|
#### Available slash menu item ids
|
|
101
110
|
|
|
102
111
|
Use these stable, English ids (not the localized, user-facing title) in the `hidden-slash-menu-items` / `enabled-media-blocks` JSON arrays:
|