From 078aeedf7ee96f59186b21985b484708c7fc202c Mon Sep 17 00:00:00 2001 From: Sandro Wenzel Date: Mon, 3 Aug 2026 15:49:54 +0200 Subject: [PATCH] Fix broken release table: add blank lines around the marker comments kramdown treats as an HTML block that swallows everything up to the next blank line. The table immediately followed release-table:start with no blank line, so kramdown absorbed the whole table into that block and rendered it as literal | text instead of an HTML table (GitHub's own renderer is lenient about this and did not catch it before merge; kramdown, the site's actual renderer, is not). Verified against a local kramdown render of the live page before/after. --- docs/mc-software-releases/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/mc-software-releases/README.md b/docs/mc-software-releases/README.md index 2683d3e..cc8d928 100644 --- a/docs/mc-software-releases/README.md +++ b/docs/mc-software-releases/README.md @@ -13,6 +13,7 @@ The current production release for MC is `O2PDPSuite::MC-prod-2026-v11-1`. ([Rel ## Stable MC Software Releases + | Version | Status | Date | Comments | |---------------------------------|---------|------------|------------------------------------------------------------------------------------------------| | `O2PDPSuite::MC-prod-2025-v1-2` | Stable | — | Produced from master/dev | @@ -37,4 +38,5 @@ The current production release for MC is `O2PDPSuite::MC-prod-2026-v11-1`. ([Rel | `O2DPGSuite::MC-prod-2026-v9-1` | stable | 12/06/2026 | Produced from daily tag `O2DPGSuite::daily-20260612-0000-1`. Fix more problems in AODBcRewriter (non-joinable MC tables). [Release notes](https://github.com/sawenzel/MCReleasePrototype/blob/main/releases/release-notes/release-notes-O2PDPSuite%3A%3AMC-prod-2026-v9.md) | | `O2DPGSuite::MC-prod-2026-v10-1` | Stable | 29/06/2026 | Produced from daily tag `O2DPGSuite::daily-20260629-0000-1`. FIT crosstalk effect in digitization. [Release notes](https://github.com/sawenzel/MCReleasePrototype/blob/main/releases/release-notes/release-notes-O2PDPSuite%3A%3AMC-prod-2026-v10.md) | | `O2PDPSuite::MC-prod-2026-v11-1` | current | 29/07/2026 | Produced from daily tag `O2PDPSuite::daily-20260729-0000-1`. First release cut and documented by the new agentic mc-release pipeline. [Release notes](https://github.com/sawenzel/MCReleasePrototype/blob/main/releases/release-notes/release-notes-O2PDPSuite-MC-prod-2026-v11.md) | +