From 21d2d2774a2a87aa8d37d90bbd9fa263b37b8021 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Mon, 1 Jun 2026 14:46:12 -0400 Subject: [PATCH] render_claim_lattice: drop leading "- " markdown bullet from claim lines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bullet prefix was a CLI-render convenience but it bleeds into the answer_text field of the JSON payload — wrong layer. Indented evidence excerpts under each flush-left claim provide enough visual structure in plain text; a markdown frontend can re-add bullets if that view wants them. 71 claim_lattice tests pass. --- arborist/qa/evidence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arborist/qa/evidence.py b/arborist/qa/evidence.py index b865550..4b1b9d2 100644 --- a/arborist/qa/evidence.py +++ b/arborist/qa/evidence.py @@ -263,7 +263,7 @@ def render_claim_lattice( text = (c.get("text") or "").strip() if not text: continue - lines.append(f"- {text}") + lines.append(text) for eid in c.get("pointer_ids") or c.get("evidence_ids") or []: obj = by_id.get(eid) if obj is None: