Fix 404 logo links on THEOlive encoder overview pages - #826
Merged
Conversation
Co-Authored-By: Mattias Buelens <mattias.buelens@dolby.com>
MattiasBuelens
requested review from
christopher-dolby and
jeroentempels-dolby
August 21, 2026 12:16
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This comment has been minimized.
This comment has been minimized.
jeroentempels-dolby
approved these changes
Aug 21, 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.
Summary
The logo cells in the THEOlive software/hardware encoder overview tables wrapped the image in a raw JSX anchor:
Docusaurus only resolves Markdown links to doc files, so the literal
ffmpeg.mdleaked into the URL and resolved relative to the page, producing 404s like/docs/theolive/software-encoders/ffmpeg.md(reported by Algolia). The neighbouring Markdown links in the same rows (**[FFmpeg](ffmpeg.md)**) were fine.Fix: turn each logo anchor into a Markdown link wrapping the JSX element, so it goes through the same link resolution:
All 8 logo links now point at the real doc URLs (
/docs/theolive/contribution/software-encoders/ffmpeg/,/docs/theolive/hardware-encoders/haivision/, …) with the logo sizing unchanged. These two files were the only places in the docs using an internal doc path inside an<a href>; every other occurrence is an external URL,mailto:, or in-page anchor.Link to Devin session: https://dolby.devinenterprise.com/sessions/ac9a43deeec54e17a3b07455be9dcc5f
Requested by: @MattiasBuelens