DOC-7089: Migrate remaining content/operate/oss_and_stack/stack-with-enterprise/ (install, timeseries, bloom, search, json) to render hooks - #4071
Merged
Conversation
…enterprise/ to render hooks Converts relref links to plain canonical markdown links and note/tip/warning shortcodes to native blockquote callouts across install/, timeseries/, bloom/, search/, json/, and the top-level pages of stack-with-enterprise/ (release-notes/ and deprecated-features/ were already migrated as separate units). This is unit 5 of 5 for DOC-7089. Hand-fixed list-nesting indentation lost by the migration tool's known callout-conversion bug in the four files with an indented note/warning inside a numbered or bulleted list item: install/upgrade-module.md, install/add-module-to-database.md, search/redisearch-2-upgrade.md, and json/active-active.md. Verified against the built HTML that each callout still renders nested inside its list item. Confirmed the two relref instances immediately followed by a literal path segment before their closing paren (timeseries/config.md, bloom/config.md) are the known-safe implicit-trailing-slash pattern, not the missing-closing-paren bug — left untouched by the tool as expected. Full-site Hugo build diff (build/diff_rendered_hrefs.py) shows 0 href changes across 214 pages under this path, and 0 new build warnings vs a baseline build of origin/main.
Contributor
Contributor
Contributor
🧠 Redis MemoryFound 5 related items from repository history (5 new this commit):
Memory updated at b8bc256 |
andy-stark-redis
deleted the
DOC-7089-remaining-stack-with-enterprise
branch
September 22, 2026 09:15
Contributor
Author
|
Thanks @dwdougherty ! |
7 tasks
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
{{< relref >}}markdown links to plain canonical/content/<path>.md[#anchor]links, and{{< note >}}/{{< tip >}}/{{< warning >}}shortcodes (including the tight{{<note>}}form and{{% %}}variant) to native> [!NOTE]-style blockquote callouts.*.mddirectly undercontent/operate/oss_and_stack/stack-with-enterprise/install/(4),timeseries/(3),bloom/(3),search/(7),json/(3), plus the 4 top-level*.mdfiles instack-with-enterprise/.release-notes/anddeprecated-features/were already migrated as separate units (5b5f64a31,2b4e1fe2e).install/upgrade-module.md,install/add-module-to-database.md(2 instances),search/redisearch-2-upgrade.md,json/active-active.md. Verified in the built HTML that each callout still renders nested inside its<li>, not as a top-level block.timeseries/config.md,bloom/config.md) but confirmed to be the known-safe implicit-trailing-slash pattern (relref's trailing slash bridging two path fragments), not the missing-closing-paren bug — left untouched, and confirmed unchanged by the href diff.<note>wrapper" ininstall/,json/, andsearch/: as in prior units, every match was the real shortcode in its tight no-space form{{<note>}}/{{<warning>}}, not a bare HTML tag. Converted normally.Verification
origin/main@2b4e1fe2e, and this branch) diffed withbuild/diff_rendered_hrefs.pyfiltered tooperate/oss_and_stack/stack-with-enterprise: 0 href diffs across 214 pages.This is the last of 5 units for DOC-7089.
Test plan
build/migrate_shortcode_links.py allover the 24 files🤖 Generated with Claude Code
Note
Low Risk
Documentation-only link and callout formatting with build verification; no application or runtime behavior changes.
Overview
This PR finishes DOC-7089 unit 5/5 by migrating the remaining
stack-with-enterprisedocs (install, bloom, search, json, timeseries, plus four top-level pages) off Hugo{{< relref >}}and admonition shortcodes.Links: Internal cross-references now use canonical markdown paths such as
/content/operate/rs/_index.mdand/content/commands/bf.add.md, including large command compatibility tables for Bloom, JSON, Search, and Time series.Callouts:
{{< note >}},{{< warning >}}, and related shortcodes become GitHub-flavored> [!NOTE]/> [!WARNING]blockquotes. Nested callouts inside list items were hand-fixed where the migrator dropped indentation (upgrade-module,add-module-to-database,redisearch-2-upgrade,json/active-active).Prose and Hugo embeds (for example
{{<embed-md>}},{{<multitabs>}}, images) are unchanged. The author reports 0 href diffs on a full-site Hugo build for this section versus baseline.Reviewed by Cursor Bugbot for commit b8bc256. Bugbot is set up for automated code reviews on this repo. Configure here.