suneditor 2.43.7 → 2.43.8
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/suneditor.min.js +2 -2
- package/package.json +1 -1
- package/src/lib/core.js +1 -1
package/package.json
CHANGED
package/src/lib/core.js
CHANGED
|
@@ -5240,7 +5240,7 @@ export default function (context, pluginCallButtons, plugins, lang, options, _re
|
|
|
5240
5240
|
} else if (util.isFormatElement(node)) {
|
|
5241
5241
|
html += '<li>' +(node.innerHTML.trim() || '<br>') + '</li>';
|
|
5242
5242
|
} else if (util.isRangeFormatElement(node) && !util.isTable(node)) {
|
|
5243
|
-
html +=
|
|
5243
|
+
html += this._convertListCell(node);
|
|
5244
5244
|
} else {
|
|
5245
5245
|
html += '<li>' + node.outerHTML + '</li>';
|
|
5246
5246
|
}
|