@hyperbook/markdown 0.42.3 → 0.43.0
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/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -63615,7 +63615,7 @@ var makeHeaderElements = (ctx) => {
|
|
|
63615
63615
|
};
|
|
63616
63616
|
var makeJump = (ctx) => {
|
|
63617
63617
|
const elements = [];
|
|
63618
|
-
if (ctx.navigation.previous
|
|
63618
|
+
if (ctx.navigation.previous) {
|
|
63619
63619
|
elements.push({
|
|
63620
63620
|
type: "element",
|
|
63621
63621
|
tagName: "a",
|
|
@@ -63631,7 +63631,7 @@ var makeJump = (ctx) => {
|
|
|
63631
63631
|
]
|
|
63632
63632
|
});
|
|
63633
63633
|
}
|
|
63634
|
-
if (ctx.navigation.next
|
|
63634
|
+
if (ctx.navigation.next) {
|
|
63635
63635
|
elements.push({
|
|
63636
63636
|
type: "element",
|
|
63637
63637
|
tagName: "a",
|