From d73be946f2ad34bbe501c2a37ee50957e7cf4753 Mon Sep 17 00:00:00 2001 From: Saksham Sharma Date: Sun, 31 May 2026 19:42:57 -0500 Subject: [PATCH 1/2] Add hovertext to discord / discourse / github links. People unfamiliar with discord / discouse logos may find this useful. --- docusaurus.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index c6b2938..9e9f02d 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -120,18 +120,21 @@ const config: Config = { { to: "/blog", label: "Blog", position: "left" }, { "aria-label": "Discourse Forum", + title: "Discourse Forum", className: "navbar--discourse-link", href: "https://discourse.bemanproject.org/", position: "right", }, { "aria-label": "Discord", + title: "Discord", className: "navbar--discord-link", href: "https://discord.com/invite/BKpNyJgSbm", position: "right", }, { "aria-label": "GitHub Repository", + title: "GitHub", className: "navbar--github-link", href: "https://github.com/bemanproject", position: "right", From 3ab61fcc08e6a7afdc37c9f637d1623e66e5b317 Mon Sep 17 00:00:00 2001 From: Saksham Sharma Date: Sun, 31 May 2026 20:08:03 -0500 Subject: [PATCH 2/2] Ensure title is added to all documentation pages. Without this, the website's page title looked off. --- docs/README.md | 1 + docs/beman_library_maturity_model.md | 1 + docs/beman_standard.md | 1 + docs/code_of_conduct.md | 1 + docs/faq.md | 1 + docs/governance.md | 1 + docs/mission.md | 1 + scripts/sync-docs.py | 1 + 8 files changed, 8 insertions(+) diff --git a/docs/README.md b/docs/README.md index 22788f5..e7ff368 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,4 +1,5 @@ --- +title: Docs sidebar_position: 1 sidebar_label: Docs --- diff --git a/docs/beman_library_maturity_model.md b/docs/beman_library_maturity_model.md index 9ea5007..b220fc6 100644 --- a/docs/beman_library_maturity_model.md +++ b/docs/beman_library_maturity_model.md @@ -1,4 +1,5 @@ --- +title: Beman Library Maturity Model sidebar_position: 2 sidebar_label: Beman Library Maturity Model --- diff --git a/docs/beman_standard.md b/docs/beman_standard.md index 08b65e7..5f90095 100644 --- a/docs/beman_standard.md +++ b/docs/beman_standard.md @@ -1,4 +1,5 @@ --- +title: Beman Standard sidebar_position: 3 sidebar_label: Beman Standard --- diff --git a/docs/code_of_conduct.md b/docs/code_of_conduct.md index 42861ca..055ee86 100644 --- a/docs/code_of_conduct.md +++ b/docs/code_of_conduct.md @@ -1,4 +1,5 @@ --- +title: Code of Conduct sidebar_position: 7 sidebar_label: Code of Conduct --- diff --git a/docs/faq.md b/docs/faq.md index 54112f8..5390951 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -1,4 +1,5 @@ --- +title: FAQ sidebar_position: 5 sidebar_label: FAQ --- diff --git a/docs/governance.md b/docs/governance.md index a4528cc..66ce7ab 100644 --- a/docs/governance.md +++ b/docs/governance.md @@ -1,4 +1,5 @@ --- +title: Governance sidebar_position: 6 sidebar_label: Governance --- diff --git a/docs/mission.md b/docs/mission.md index 979acce..d71abea 100644 --- a/docs/mission.md +++ b/docs/mission.md @@ -1,4 +1,5 @@ --- +title: Mission sidebar_position: 4 sidebar_label: Mission --- diff --git a/scripts/sync-docs.py b/scripts/sync-docs.py index 34116ed..4fd492f 100644 --- a/scripts/sync-docs.py +++ b/scripts/sync-docs.py @@ -68,6 +68,7 @@ def insert_sidebar_metadata(file_path: Path, sidebar_position: int, sidebar_labe lines = file.readlines() prefix = [ "---\n", + f"title: {sidebar_label}\n", f"sidebar_position: {sidebar_position}\n", ] if sidebar_label: