fix(docs): unblock Pages deploy — MDX autolink breaks the Docusaurus build - #611
Merged
Conversation
"Deploy Website + Docs to GitHub Pages" has been failing on main: the Docusaurus build aborts on the first MDX error, so nothing publishes at all. Root cause: ARXIV_SUBMISSION_CONFIRMATION.md:62 uses the markdown autolink form <https://info.arxiv.org/help/submit/index.html>. MDX v3 reads `<https...` as a JSX tag and fails on the `/` in `//`: Unexpected character `/` (U+002F) before local name ... (micromark-extension-mdx-jsx, unexpected-character) Replaced with a normal markdown link. This was the only occurrence in docs/docs. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
github-actions Bot
added a commit
that referenced
this pull request
Aug 8, 2026
…olink (#611) "Deploy Website + Docs to GitHub Pages" has been failing on main: the Docusaurus build aborts on the first MDX error, so nothing publishes at all. Root cause: ARXIV_SUBMISSION_CONFIRMATION.md:62 uses the markdown autolink form <https://info.arxiv.org/help/submit/index.html>. MDX v3 reads `<https...` as a JSX tag and fails on the `/` in `//`: Unexpected character `/` (U+002F) before local name ... (micromark-extension-mdx-jsx, unexpected-character) Replaced with a normal markdown link. This was the only occurrence in docs/docs. Co-authored-by: Dmitrii Vasilev <admin@t27.dev> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This was referenced Aug 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Deploy Website + Docs to GitHub Pagesis failing onmain(every run — 05:57, 07:06, …), so the site is not publishing at all.Pages Health Checkfails as a consequence.Root cause
The Docusaurus build aborts on the first MDX error:
Line 62 used the markdown autolink form:
MDX v3 parses
<https…as the start of a JSX tag and chokes on the/in//. Plain Markdown allows this; MDX does not.Fix
Replaced it with an ordinary markdown link. Verified by grep that this was the only occurrence of the
<https://…>autolink pattern anywhere underdocs/docs, so this should be the only instance of this class of failure.Scope
One line, documentation only — no code, no behaviour change. The other CI failures on this repo (e.g.
zig build author-guardreporting "no build.zig file found") are pre-existing onmainand unrelated to this change.🤖 Generated with Claude Code