Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Join adjacent anchors with the same href #26

Merged
merged 2 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 30 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -2889,7 +2889,7 @@ exports.listComments = {

/***/ }),

/***/ 3714:
/***/ 8259:
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {


Expand Down Expand Up @@ -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; } });
Expand Down Expand Up @@ -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


Expand All @@ -26821,6 +26846,7 @@ function mergeSideBySideFigures(tree) {




const formatHast = rehypeFormat();

main();
Expand Down Expand Up @@ -26892,6 +26918,7 @@ async function transformPage(page) {

// Apply post processing plugin
mergeSideBySideFigures(hast);
joinAdjacentAnchors(hast);

// Format using plugin
formatHast(hast);
Expand Down
2 changes: 2 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -84,6 +85,7 @@ async function transformPage(page) {

// Apply post processing plugin
mergeSideBySideFigures(hast);
joinAdjacentAnchors(hast);

// Format using plugin
formatHast(hast);
Expand Down
23 changes: 23 additions & 0 deletions src/plugins/adjacent-anchors.js
Original file line number Diff line number Diff line change
@@ -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];
}
});
}