From 83cd5a6bbcd8935426f46036a0d8a2879557c3b2 Mon Sep 17 00:00:00 2001 From: ZDDC Date: Tue, 28 Apr 2026 17:39:20 -0500 Subject: [PATCH] docs(zddc-server): normalize .zddc YAML examples to block-style lists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Block style (one '- entry' per line) is recommended for hand-edited config in this repo: cleaner diffs, easier to comment per-entry, no surprise YAML quoting traps. The Admin Debug Page example mixed admins (block) with acl.allow (flow); flip allow to block too for consistency. Inline-in-table flow-style examples (lines 143-145) stay flow — block style would mangle the cell layout — and that's a fine exception when the list lives inside a one-cell context. Co-Authored-By: Claude Opus 4.7 (1M context) --- zddc/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zddc/README.md b/zddc/README.md index 9ee5c37..8ea172f 100644 --- a/zddc/README.md +++ b/zddc/README.md @@ -202,7 +202,8 @@ admins: - alice@mycompany.com - "*@admin.mycompany.com" acl: - allow: ["*@mycompany.com"] + allow: + - "*@mycompany.com" ``` Only the root-level `admins` entry is honored — subdirectory `.zddc` files'