docs: backtick-quote angle-bracket placeholders in prose - they vanish in HTML renderers #315
Labels
No labels
breaking
bug
documentation
enhancement
epic
good first issue
help wanted
refactoring
resolution/duplicate
resolution/invalid
resolution/wontfix
security
severity/critical
severity/high
severity/low
severity/medium
status/abandoned
status/blocked
status/needs-decision
status/needs-info
status/needs-verification
testing
upstream
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
sixfold-space/madtea#315
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
docs/reference/cli-git.mdwrites placeholders as raw angle-bracket tokens in prose - e.g. "commits ahead of mainline (<mainlineref>..HEAD)", 3 occurrences on that page. Any renderer that passes HTML through (goldmark with unsafe, most site pipelines) treats<mainlineref>as an unknown element and hides it; on madtea.lol readers see "(..HEAD)" with the placeholder text missing.Fix wherever the text actually lives - help strings / generator templates for the generated pages, the markdown itself for hand-written ones: placeholders in prose get backtick-quoted (
`<mainlineref>`) so they render as inline code everywhere.Worth a sweep for other bare
<token>shapes in prose acrossdocs/**while at it.Acceptance: no bare angle-bracket placeholder tokens in prose anywhere in the docs; the cli-git page shows
<mainlineref>as inline code.