From e710c4c398464f16610d98a572a874824a87b103 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 00:41:56 +0200 Subject: [PATCH 1/3] Trigger full production pipeline Update README.md to force important-file detection and validate Build-Site + Publish-Site on merge to main. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 96936ee..464914e 100644 --- a/README.md +++ b/README.md @@ -67,3 +67,5 @@ You can either help by picking up an existing issue or submit a new one if you h ## Acknowledgements Here is a list of people and projects that helped this project in some way. + +Validation marker: docs publish verification run at 2026-07-18 22:41:56Z. From a74b134a9e132441742d4cb5c3a654331ecfe513 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 01:06:44 +0200 Subject: [PATCH 2/3] Align Zensical theme with MSX docs Update MariusTestModule theme fonts, features, icons, and palette to match the MSXOrg/docs layout profile. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/zensical.toml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.github/zensical.toml b/.github/zensical.toml index 0c217d4..1bef374 100644 --- a/.github/zensical.toml +++ b/.github/zensical.toml @@ -5,24 +5,35 @@ repo_url = "https://github.com/-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" [project.theme] language = "en" -font.text = "Roboto" -font.code = "Sono" +font.text = "Mona Sans" +font.code = "Source Code Pro" logo = "Assets/icon.png" favicon = "Assets/icon.png" features = [ + "announce.dismiss", + "content.action.edit", + "content.action.view", + "content.code.annotate", "content.code.copy", + "content.tooltips", + "navigation.footer", + "navigation.instant.prefetch", + "navigation.instant.preview", "navigation.instant", "navigation.instant.progress", "navigation.indexes", + "navigation.tabs", "navigation.top", "navigation.tracking", - "navigation.expand", + "search.share", "search.suggest", "search.highlight", + "toc.follow", ] [project.theme.icon] repo = "material/github" +link = "material/link-variant" [[project.theme.palette]] media = "(prefers-color-scheme)" @@ -33,15 +44,15 @@ toggle.name = "Switch to dark mode" media = "(prefers-color-scheme: dark)" scheme = "slate" primary = "black" -accent = "green" +accent = "light blue" toggle.icon = "material/toggle-switch-off-outline" toggle.name = "Switch to light mode" [[project.theme.palette]] media = "(prefers-color-scheme: light)" scheme = "default" -primary = "indigo" -accent = "green" +primary = "black" +accent = "light blue" toggle.icon = "material/toggle-switch" toggle.name = "Switch to system preference" From ff169396c8e7913743e781ec39052ee02099eb70 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 19 Jul 2026 01:13:37 +0200 Subject: [PATCH 3/3] Set Home root nav and remove top tabs Define Home as the top-level root page in zensical nav and remove navigation.tabs to avoid top tab navigation on home. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/zensical.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/zensical.toml b/.github/zensical.toml index 1bef374..b499c9b 100644 --- a/.github/zensical.toml +++ b/.github/zensical.toml @@ -2,6 +2,9 @@ site_name = "-{{ REPO_NAME }}-" repo_name = "-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" repo_url = "https://github.com/-{{ REPO_OWNER }}-/-{{ REPO_NAME }}-" +nav = [ + {"Home" = "index.md"}, +] [project.theme] language = "en" @@ -22,7 +25,6 @@ features = [ "navigation.instant", "navigation.instant.progress", "navigation.indexes", - "navigation.tabs", "navigation.top", "navigation.tracking", "search.share",