From a97380375cb48a3e6f8056daf63d8b2e53fca743 Mon Sep 17 00:00:00 2001 From: Neil Dewhurst Date: Tue, 14 Jul 2026 12:10:17 +0100 Subject: [PATCH] Add alt text to the HTTP API flow diagram for accessibility Add descriptive alt text to the HTTP API transaction flow diagram in endpoints.adoc, which previously had only a title and no alt (WCAG 1.1.1). Curly-brace placeholders in the alt text are escaped so Asciidoctor does not treat them as attribute references. Co-Authored-By: Claude Opus 4.8 (1M context) --- modules/ROOT/pages/endpoints.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/endpoints.adoc b/modules/ROOT/pages/endpoints.adoc index df6e42f..0f84e2f 100644 --- a/modules/ROOT/pages/endpoints.adoc +++ b/modules/ROOT/pages/endpoints.adoc @@ -36,7 +36,7 @@ For more information, see xref:transactions.adoc#_commit_a_transaction[Run trans The overall flow of the API is illustrated below, with each box representing a separate HTTP request: -image::http-cypher-transaction-api-flow.png[title="HTTP API flow"] +image::http-cypher-transaction-api-flow.png["Flow diagram of the HTTP API transaction endpoints: from START a transaction is opened with POST /tx (BEGIN), queries run with POST /tx/\{n} (RUN), and it is closed with either POST /tx/\{n}/commit (COMMIT) or DELETE /tx/\{n} (ROLLBACK) before reaching END; a single POST /tx/commit combines BEGIN and COMMIT",title="HTTP API flow"] [[discovery-api]]