From a6dca14a4a7e5e7e3fcfca2ebcc729c4b6a54384 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Mar 2026 13:24:40 +0000 Subject: [PATCH] docs: fix duplicate H1 and abnf code fences in fuzzy-schedule-specification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the explicit `# Fuzzy Schedule Time Syntax Specification` H1 (line 8) that duplicates the Starlight frontmatter title, causing two H1 elements in the rendered page and an accessibility violation for screen reader users. Also change `abnf` code fence language to `text` in the two ABNF grammar blocks — the `abnf` language is not recognized by Astro Expressive Code and was falling back to unstyled `txt` with a dev-server warning. Co-Authored-By: Claude Sonnet 4.6 --- .../docs/reference/fuzzy-schedule-specification.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/reference/fuzzy-schedule-specification.md b/docs/src/content/docs/reference/fuzzy-schedule-specification.md index 19ae213f999..67887713b34 100644 --- a/docs/src/content/docs/reference/fuzzy-schedule-specification.md +++ b/docs/src/content/docs/reference/fuzzy-schedule-specification.md @@ -5,9 +5,7 @@ sidebar: order: 1360 --- -# Fuzzy Schedule Time Syntax Specification - -**Version**: 1.2.0 +**Version**: 1.2.0 **Status**: Draft Specification **Latest Version**: [fuzzy-schedule-specification](/gh-aw/reference/fuzzy-schedule-specification/) **Editor**: GitHub Agentic Workflows Team @@ -104,7 +102,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S A fuzzy schedule expression MUST conform to the following ABNF grammar: -```abnf +```text fuzzy-schedule = daily-schedule / hourly-schedule / weekly-schedule / interval-schedule daily-schedule = "daily" [time-constraint] @@ -425,7 +423,7 @@ between 22:00 and 02:00 An implementation MUST support UTC offset specifications using the format: -```abnf +```text utc-offset = "utc" ("+" / "-") offset-value offset-value = hours / hours ":" minutes ```