decap-cms-widget-markdown 3.1.2 → 3.1.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "decap-cms-widget-markdown",
3
3
  "description": "Widget for editing markdown in Decap CMS.",
4
- "version": "3.1.2",
4
+ "version": "3.1.3",
5
5
  "homepage": "https://www.decapcms.org/docs/widgets/#markdown",
6
6
  "repository": "https://github.com/decaporg/decap-cms/tree/main/packages/decap-cms-widget-markdown",
7
7
  "bugs": "https://github.com/decaporg/decap-cms/issues",
@@ -60,5 +60,5 @@
60
60
  "commonmark-spec": "^0.30.0",
61
61
  "slate-hyperscript": "^0.77.0"
62
62
  },
63
- "gitHead": "875f4cafa9a82283d28fc5d7871a34550b2a3870"
63
+ "gitHead": "13c0b4af1b560d39af107a46751cbcda477989fa"
64
64
  }
@@ -205,7 +205,12 @@ function ThematicBreak(props) {
205
205
  }
206
206
 
207
207
  function Break(props) {
208
- return <br {...props.attributes} />;
208
+ return (
209
+ <>
210
+ <br {...props.attributes} />
211
+ {props.children}
212
+ </>
213
+ );
209
214
  }
210
215
 
211
216
  function BulletedList(props) {