Skip to content

Support cross-repository redirects and specialized anchor scenarios #1227

New issue

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

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

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

cotti
Copy link
Contributor

@cotti cotti commented May 8, 2025

Closes #670, #847

This MR introduces support for cross-repository redirects, and support for more complex anchor scenarios.

@cotti cotti self-assigned this May 8, 2025
@cotti cotti requested a review from a team as a code owner May 8, 2025 09:27
@cotti cotti added the feature label May 8, 2025
@reakaleek reakaleek requested a review from Copilot May 8, 2025 10:27
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds support for cross‐repository redirects and enhanced anchor handling in Markdown links.

  • Updated HtmxLinkInlineRenderer to differentiate between cross links and HTTP links.
  • Refactored CrossLinkResolver to improve redirect resolution and error reporting.
  • Enhanced URI validation in DocumentationSet and updated documentation for redirects.

Reviewed Changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.

File Description
src/Elastic.Markdown/Myst/Renderers/HtmxLinkInlineRenderer.cs Introduces new flags (isCrossLink, isHttpLink) and refines hx attribute assignment based on link types.
src/Elastic.Markdown/Links/CrossLinks/CrossLinkResolver.cs Refactors redirect resolution logic with clearer variable naming and improved handling of anchors and lookup paths.
src/Elastic.Markdown/IO/DocumentationSet.cs Adds URI validation for external redirect targets.
docs/contribute/redirects.md Updates documentation with examples on cross-repository redirects and complex anchor scenarios.

continue;
if (!linkReference.Links.TryGetValue(redirect.To, out link))
continue;
var lookupPath = Path.Combine(targetCrossUri.Host, targetCrossUri.AbsolutePath.TrimStart('/'));
Copy link
Preview

Copilot AI May 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using Path.Combine for URL construction might introduce platform-specific path separators. Consider using string concatenation or a URI-specific method to ensure consistent forward slash formatting in URLs.

Suggested change
var lookupPath = Path.Combine(targetCrossUri.Host, targetCrossUri.AbsolutePath.TrimStart('/'));
var lookupPath = $"{targetCrossUri.Host}/{targetCrossUri.AbsolutePath.TrimStart('/')}";

Copilot uses AI. Check for mistakes.

'item-a': 'yy'
- to: 'testing/redirects/third-page.md'
anchors:
'item-b':
Copy link
Preview

Copilot AI May 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The anchor mapping for 'item-b' is empty, which could be unintentional. Confirm whether this is the desired behavior or if an explicit null/empty value should be specified for clarity.

Suggested change
'item-b':
'item-b': '!'

Copilot uses AI. Check for mistakes.

Copy link
Member

@Mpdreamz Mpdreamz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


var declaredRepositories = fetchedCrossLinks.DeclaredRepositories;
if (!declaredRepositories.Contains(crossLinkUri.Scheme))
if (crossLinkUri.Scheme.Equals("asciidocalypse") || !fetchedCrossLinks.LinkReferences.TryGetValue(crossLinkUri.Scheme, out var sourceLinkReference))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think its time to remove this leniency. All repositories are now publishing links.json files for a long while.

@@ -49,6 +49,19 @@ redirects:
'testing/redirects/third-page.md':
anchors:
'removed-anchor':
'testing/redirects/cross-repo-page.md': 'other-repo://reference/section/new-cross-repo-page.md'
'testing/redirects/8th-page.md':
to: 'other-repo://testing/redirects/5th-page.md'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With my other comment about removing leniency this should no longer be allowed. We should only link to published remote links.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request]: A way to redirect from one page to another just for specific anchors
2 participants