release-notes: convert legacy HTMLBlock section to markdown#44
Merged
jduval23 merged 2 commits intoMay 18, 2026
Merged
Conversation
The Roku OS 7.5–2.4 section was wrapped in a JSX <HTMLBlock> template literal, which kept ReadMe's markdown processor from rendering the [text](doc:slug) links inside (~104 unrendered links). Convert the block to plain markdown matching the upper-half style. Also clean up legacy Confluence artifacts in the converted section: - Replace dead .html and /pages/createpage.action links with their v2 doc: equivalents where they exist (drop where no v2 doc). - Link the roDeviceInfo "Added Function" entries in OS 6.1 to their ifDeviceInfo anchors where the function still ships. Heading slugs change from the old Confluence form (roku-os-7-5) to ReadMe's auto-generated form (roku-os-75) — inbound links are repointed in the next commit.
The legacy HTMLBlock section used Confluence-style heading IDs (roku-os-7-5, roku-os-3-0, etc.). Converting those headings to plain markdown lets ReadMe auto-generate the slug, which drops the dash between digits (roku-os-75, roku-os-30) — matching the upper-half section's convention. Update the 20 doc:release-notes#roku-os-X-Y inbound references across 13 files to use the new slug form.
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 Roku OS 7.5–2.4 section of
release-notes/index.mdwas wrapped in a JSX<HTMLBlock>template literal. ReadMe doesn't process markdown insideHTMLBlock, so the ~104[text](doc:slug)references in that section rendered literally instead of as links. This PR converts the block to plain markdown matching the upper-half style.Changes
Commit 1 —
release-notes/index.md: convert legacy HTMLBlock to markdowndoc:equivalents where possible:Playing-Videos_1608528.html→doc:playing-videosDebugging-SceneGraph-Applications_3736509.html→doc:debuggingFast-Video-Start_4262645.html→doc:fast-video-startCreating-Custom-Components_4260778.html→doc:creating-custom-componentsinterface_1608549.html→doc:interface/pages/createpage.action?...title=roProgramGuide→doc:roprogramguide/pages/createpage.action?...title=roTuner— no v2 doc, link removedifDeviceInfoanchors where the function still ships (7 of 9;GetCreationTimeandGetPublisherIdhave no v2 doc).Commit 2 —
Repoint release-notes inbound links to new auto-generated slugsHeading slugs change from Confluence form (
roku-os-7-5) to ReadMe's auto-generated form (roku-os-75, matching the upper-half convention). 20doc:release-notes#roku-os-X-Yinbound references across 13 files updated accordingly.