You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Mermaid diagram in .github/ISSUE_TEMPLATE/README.md uses the deprecated inline accTitle/accDescr syntax (declared inside the flowchart body, after the diagram-type line) rather than the canonical YAML header block format mandated by instructions/mermaid.instructions.md v2.0.
Current (broken) format
flowchart TD
accTitle: Issue template workflow
accDescr: Shows how users select an issue template...
Loading
Required format
---
accTitle: Issue template workflow
accDescr: Shows how users select an issue template...
---
flowchart TD
Loading
Impact
validate:mermaid-accessibility CI check flags diagrams that do not carry the YAML header block
Screen readers may not surface the accessible title/description for this diagram
Inconsistency with all other diagrams in the repository which were updated to YAML block format in the Wave-5 Mermaid WCAG sweep
Acceptance Criteria
.github/ISSUE_TEMPLATE/README.md diagram uses the YAML header block (--- delimiters before the diagram type line) for accTitle and accDescr
validate:mermaid-accessibility passes
Frontmatter version and last_updated bumped per convention
Summary
The Mermaid diagram in
.github/ISSUE_TEMPLATE/README.mduses the deprecated inlineaccTitle/accDescrsyntax (declared inside the flowchart body, after the diagram-type line) rather than the canonical YAML header block format mandated byinstructions/mermaid.instructions.mdv2.0.Current (broken) format
flowchart TD accTitle: Issue template workflow accDescr: Shows how users select an issue template...Required format
Impact
validate:mermaid-accessibilityCI check flags diagrams that do not carry the YAML header blockAcceptance Criteria
.github/ISSUE_TEMPLATE/README.mddiagram uses the YAML header block (---delimiters before the diagram type line) foraccTitleandaccDescrvalidate:mermaid-accessibilitypassesversionandlast_updatedbumped per conventionRelated
instructions/mermaid.instructions.mdv2.0 — canonical diagram standards