fix(blog): render the inline markup instead of showing it - #864
Merged
Conversation
Readers were seeing the source. `**Executed**` and `` `zig build` `` reached production with their delimiters intact -- the renderer emitted the raw string for paragraphs, list items, table cells, blockquotes and the open-questions list. Live on t27.ai across 13 pages before this. The bodies were measured before choosing a fix: 31 bold spans, 123 code spans, and ZERO markdown links. Two forms cover the corpus, so this is a 20-line inline renderer and not a markdown dependency. A `code` BLOCK is deliberately untouched. One post quotes tool output that literally contains `- **NOTE** purely combinational`; inside a code span those asterisks are the data, and the alternation keeps them. Verified in a browser against ALL 31 published posts: zero literal delimiters outside code, with a control confirming the check was not vacuous (6 rendered <strong> on the newest post). An earlier version of that same check scraped links from a post page instead of the index, examined zero posts, and reported clean -- which is the vacuous pass this repository keeps auditing other gates for, so it is named here.
github-actions Bot
added a commit
that referenced
this pull request
Aug 22, 2026
fix(blog): render the inline markup instead of showing it (#864) Readers were seeing the source. `**Executed**` and `` `zig build` `` reached production with their delimiters intact -- the renderer emitted the raw string for paragraphs, list items, table cells, blockquotes and the open-questions list. Live on t27.ai across 13 pages before this. The bodies were measured before choosing a fix: 31 bold spans, 123 code spans, and ZERO markdown links. Two forms cover the corpus, so this is a 20-line inline renderer and not a markdown dependency. A `code` BLOCK is deliberately untouched. One post quotes tool output that literally contains `- **NOTE** purely combinational`; inside a code span those asterisks are the data, and the alternation keeps them. Verified in a browser against ALL 31 published posts: zero literal delimiters outside code, with a control confirming the check was not vacuous (6 rendered <strong> on the newest post). An earlier version of that same check scraped links from a post page instead of the index, examined zero posts, and reported clean -- which is the vacuous pass this repository keeps auditing other gates for, so it is named here.
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.
Readers were seeing the source.
**Executed**and`zig build`reached production with their delimiters intact — the renderer emitted the raw string for paragraphs, list items, table cells, blockquotes and the open-questions list. Live on t27.ai across 13 pages before this.The bodies were measured before choosing a fix: 31 bold spans, 123 code spans, and zero markdown links. Two forms cover the corpus, so this is a 20-line inline renderer rather than a markdown dependency.
A
codeblock is deliberately untouched. One post quotes tool output that literally contains- **NOTE** purely combinational; inside a code span those asterisks are the data, and the alternation keeps them there.Verification
Browser-checked against all 31 published posts: zero literal delimiters outside code, with a control confirming the check was not vacuous (6 rendered
<strong>on the newest post).An earlier version of that same check scraped links from a post page instead of the index, examined zero posts, and reported clean. That is precisely the vacuous pass this project keeps auditing other gates for, so it is named here rather than quietly fixed.
🤖 Generated with Claude Code