diff --git a/dist/index.js b/dist/index.js index 1e9212a..3eb5dc4 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2300,7 +2300,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function ( var _Client_auth, _Client_logLevel, _Client_logger, _Client_prefixUrl, _Client_timeoutMs, _Client_notionVersion, _Client_fetch, _Client_agent, _Client_userAgent; Object.defineProperty(exports, "__esModule", ({ value: true })); const logging_1 = __nccwpck_require__(2096); -const errors_1 = __nccwpck_require__(3714); +const errors_1 = __nccwpck_require__(8259); const utils_1 = __nccwpck_require__(8769); const api_endpoints_1 = __nccwpck_require__(1605); const node_fetch_1 = __nccwpck_require__(467); @@ -2889,7 +2889,7 @@ exports.listComments = { /***/ }), -/***/ 3714: +/***/ 8259: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { @@ -3211,7 +3211,7 @@ var Client_1 = __nccwpck_require__(6492); Object.defineProperty(exports, "KU", ({ enumerable: true, get: function () { return Client_1.default; } })); var logging_1 = __nccwpck_require__(2096); __webpack_unused_export__ = ({ enumerable: true, get: function () { return logging_1.LogLevel; } }); -var errors_1 = __nccwpck_require__(3714); +var errors_1 = __nccwpck_require__(8259); __webpack_unused_export__ = ({ enumerable: true, get: function () { return errors_1.APIErrorCode; } }); __webpack_unused_export__ = ({ enumerable: true, get: function () { return errors_1.ClientErrorCode; } }); __webpack_unused_export__ = ({ enumerable: true, get: function () { return errors_1.APIResponseError; } }); @@ -26805,6 +26805,31 @@ function mergeSideBySideFigures(tree) { }); } +;// CONCATENATED MODULE: ./src/plugins/adjacent-anchors.js + + +function joinAdjacentAnchors(tree) { + visit(tree, 'element', (node, index, parent) => { + if (!parent || node.tagName !== 'a') return; + + let nextNode = parent.children[index + 1]; + while ( + nextNode && + nextNode.tagName === 'a' && + nextNode.properties.href === node.properties.href + ) { + // Combine children of the next node with the current node + node.children = [...node.children, ...nextNode.children]; + + // Remove the next node from the parent + parent.children.splice(index + 1, 1); + + // Update nextNode to the new node at the current index + 1 + nextNode = parent.children[index + 1]; + } + }); +} + ;// CONCATENATED MODULE: ./src/main.js @@ -26821,6 +26846,7 @@ function mergeSideBySideFigures(tree) { + const formatHast = rehypeFormat(); main(); @@ -26892,6 +26918,7 @@ async function transformPage(page) { // Apply post processing plugin mergeSideBySideFigures(hast); + joinAdjacentAnchors(hast); // Format using plugin formatHast(hast); diff --git a/src/main.js b/src/main.js index 06ea72a..be31deb 100644 --- a/src/main.js +++ b/src/main.js @@ -12,6 +12,7 @@ import { importExamples } from './import-examples.js'; import { importImages } from './import-images.js'; import { handlePagesInternalLinks } from './internal-links.js'; import { mergeSideBySideFigures } from './plugins/side-by-side-figures.js'; +import { joinAdjacentAnchors } from './plugins/adjacent-anchors.js'; const formatHast = rehypeFormat(); @@ -84,6 +85,7 @@ async function transformPage(page) { // Apply post processing plugin mergeSideBySideFigures(hast); + joinAdjacentAnchors(hast); // Format using plugin formatHast(hast); diff --git a/src/plugins/adjacent-anchors.js b/src/plugins/adjacent-anchors.js new file mode 100644 index 0000000..d67de4c --- /dev/null +++ b/src/plugins/adjacent-anchors.js @@ -0,0 +1,23 @@ +import { visit } from 'unist-util-visit'; + +export function joinAdjacentAnchors(tree) { + visit(tree, 'element', (node, index, parent) => { + if (!parent || node.tagName !== 'a') return; + + let nextNode = parent.children[index + 1]; + while ( + nextNode && + nextNode.tagName === 'a' && + nextNode.properties.href === node.properties.href + ) { + // Combine children of the next node with the current node + node.children = [...node.children, ...nextNode.children]; + + // Remove the next node from the parent + parent.children.splice(index + 1, 1); + + // Update nextNode to the new node at the current index + 1 + nextNode = parent.children[index + 1]; + } + }); +}