@sveltia/ui 0.31.5 → 0.31.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.
|
@@ -225,10 +225,11 @@ const onEditorUpdate = (editor) => {
|
|
|
225
225
|
// @see https://github.com/sveltia/sveltia-cms/issues/430
|
|
226
226
|
// @see https://github.com/sveltia/sveltia-cms/issues/512
|
|
227
227
|
.replace(/\\([_\\])/g, '$1')
|
|
228
|
-
// Replace
|
|
229
|
-
//
|
|
228
|
+
// Replace encoded spaces with regular spaces. The HTML entity can appear with a
|
|
229
|
+
// combination of bold and italic text
|
|
230
230
|
// @see https://github.com/sveltia/sveltia-cms/issues/511
|
|
231
|
-
.
|
|
231
|
+
// @see https://github.com/sveltia/sveltia-cms/issues/534
|
|
232
|
+
.replace(/ /g, ' '),
|
|
232
233
|
selection: getSelectionTypes(),
|
|
233
234
|
},
|
|
234
235
|
}),
|