From 757b48f378f68a50fb4101cded77540a6f2fc18d Mon Sep 17 00:00:00 2001 From: mikael-lovqvists-claude-agent Date: Tue, 24 Mar 2026 23:44:06 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20Mermaid=20node=20labels:=20\n=20=E2=86=92?= =?UTF-8?q?=20
=20for=20line=20breaks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9909d26..7ed8083 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ programmatic/LLM consumption. ```mermaid flowchart TD - A["tokenize(text)"] --> B["parse_sexp(text)\n{ tag, items[] } tree"] - B --> C["run_query(ext, query, root, args)\nfile-type + query dispatch"] + A["tokenize(text)"] --> B["parse_sexp(text)
{ tag, items[] } tree"] + B --> C["run_query(ext, query, root, args)
file-type + query dispatch"] C --> D["plain data object"] - D --> E["render_human(ext, query, data)\nformatted tables for terminal"] - D --> F["render_json(data)\nJSON.stringify for LLM / scripts"] + D --> E["render_human(ext, query, data)
formatted tables for terminal"] + D --> F["render_json(data)
JSON.stringify for LLM / scripts"] ``` Query functions are pure data transformers — no I/O, no format awareness.