@readme/markdown 10.2.5 → 10.2.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.
- package/dist/main.js +2 -2
- package/dist/main.node.js +2 -2
- package/dist/main.node.js.map +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -51539,8 +51539,8 @@ const wrapHeading = (node) => {
|
|
|
51539
51539
|
depth: 3,
|
|
51540
51540
|
children: ('children' in firstChild ? firstChild.children : []),
|
|
51541
51541
|
position: {
|
|
51542
|
-
start: findFirst(firstChild)
|
|
51543
|
-
end: findLast(firstChild)
|
|
51542
|
+
start: findFirst(firstChild)?.position.start,
|
|
51543
|
+
end: findLast(firstChild)?.position.end,
|
|
51544
51544
|
},
|
|
51545
51545
|
};
|
|
51546
51546
|
};
|
package/dist/main.node.js
CHANGED
|
@@ -69622,8 +69622,8 @@ const wrapHeading = (node) => {
|
|
|
69622
69622
|
depth: 3,
|
|
69623
69623
|
children: ('children' in firstChild ? firstChild.children : []),
|
|
69624
69624
|
position: {
|
|
69625
|
-
start: findFirst(firstChild)
|
|
69626
|
-
end: findLast(firstChild)
|
|
69625
|
+
start: findFirst(firstChild)?.position.start,
|
|
69626
|
+
end: findLast(firstChild)?.position.end,
|
|
69627
69627
|
},
|
|
69628
69628
|
};
|
|
69629
69629
|
};
|