Conversation
Raw .java files are served as plain text by GitHub Pages, so the Implementation links rendered without highlighting. Each source file now has a companion <Name>.java.md wrapper that pulls the code into a fenced java block via include_relative, which Rouge highlights in the Cayman theme. README and docs links now target the wrapper pages; jekyll-relative-links converts them to .html on the published site. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Summary
.javafiles are served as plain text by GitHub Pages, so clicking an Implementation link showed unstyled grey text.<Name>.java.mdwrapper page that pulls the code into a fenced ```java block via Liquid'sinclude_relative, so Rouge highlights it in the Cayman theme. The code stays single-sourced — wrappers include the file at build time, nothing is duplicated.jekyll-relative-linksplugin converts them to.htmllinks on the published site. Each wrapper keeps a "Raw file" link to the original.java.No plugins or config changes needed — this works on the stock GitHub Pages build.
Test plan
mvn -B verify: 0 checkstyle violations, 46/46 tests pass (Markdown-only change).🤖 Generated with Claude Code