@readme/markdown 6.32.2-next.1 → 6.33.1
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/CHANGELOG.md +30 -0
- package/dist/main.js +1 -1
- package/dist/main.node.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
===
|
|
3
3
|
|
|
4
|
+
## Version 6.33.1
|
|
5
|
+
|
|
6
|
+
### 🛠 Fixes & Updates
|
|
7
|
+
|
|
8
|
+
* allow indented code on first line ([#362](https://github.com/readmeio/markdown/issues/362)) ([2b55c09](https://github.com/readmeio/markdown/commit/2b55c092e669ddf1488c792748f9c9775742e97d))
|
|
9
|
+
* trigger release ([00a259b](https://github.com/readmeio/markdown/commit/00a259b436b69a1b3c907c75bf9b9dae2486caaa))
|
|
10
|
+
|
|
11
|
+
## Version 6.33.1-next.1
|
|
12
|
+
|
|
13
|
+
### 🛠 Fixes & Updates
|
|
14
|
+
|
|
15
|
+
* allow indented code on first line ([#362](https://github.com/readmeio/markdown/issues/362)) ([2b55c09](https://github.com/readmeio/markdown/commit/2b55c092e669ddf1488c792748f9c9775742e97d))
|
|
16
|
+
|
|
17
|
+
## Version 6.33.0
|
|
18
|
+
|
|
19
|
+
### 🛠 Fixes & Updates
|
|
20
|
+
|
|
21
|
+
* trigger release ([3a3b24c](https://github.com/readmeio/markdown/commit/3a3b24cbe80d0af7aeeab36cc0513bc6ca195181))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### ✨ New & Improved
|
|
25
|
+
|
|
26
|
+
* trigger release ([9549095](https://github.com/readmeio/markdown/commit/9549095fc9c4587812bd482bf2d1f52b295e53ff))
|
|
27
|
+
|
|
28
|
+
## Version 6.32.2
|
|
29
|
+
|
|
30
|
+
### 🛠 Fixes & Updates
|
|
31
|
+
|
|
32
|
+
* publish new release ([670b575](https://github.com/readmeio/markdown/commit/670b5752a7092f6da78b55839288846bb8db1df4))
|
|
33
|
+
|
|
4
34
|
## Version 6.32.2-next.1
|
|
5
35
|
|
|
6
36
|
### 🛠 Fixes & Updates
|
package/dist/main.js
CHANGED
|
@@ -51541,7 +51541,7 @@ function setup(blocks) {
|
|
|
51541
51541
|
opts = parseOptions(opts); // normalize magic block linebreaks
|
|
51542
51542
|
|
|
51543
51543
|
if (opts.normalize && blocks) {
|
|
51544
|
-
blocks = blocks.replace(/\[block:/g, '\n\n[block:').replace(/\[\/block\]/g, '[/block]\n')
|
|
51544
|
+
blocks = blocks.replace(/\[block:/g, '\n\n[block:').replace(/\[\/block\]/g, '[/block]\n');
|
|
51545
51545
|
}
|
|
51546
51546
|
|
|
51547
51547
|
return ["".concat(blocks, "\n\n "), opts];
|
package/dist/main.node.js
CHANGED
|
@@ -33886,7 +33886,7 @@ function setup(blocks) {
|
|
|
33886
33886
|
opts = parseOptions(opts); // normalize magic block linebreaks
|
|
33887
33887
|
|
|
33888
33888
|
if (opts.normalize && blocks) {
|
|
33889
|
-
blocks = blocks.replace(/\[block:/g, '\n\n[block:').replace(/\[\/block\]/g, '[/block]\n')
|
|
33889
|
+
blocks = blocks.replace(/\[block:/g, '\n\n[block:').replace(/\[\/block\]/g, '[/block]\n');
|
|
33890
33890
|
}
|
|
33891
33891
|
|
|
33892
33892
|
return ["".concat(blocks, "\n\n "), opts];
|
package/package.json
CHANGED