From 94f00e16f7db7d0e1b822c75bc85b6332b53377f Mon Sep 17 00:00:00 2001 From: isaacclad Date: Thu, 11 Jun 2026 08:41:22 +0000 Subject: [PATCH] Afia: render markdown bold in chat instead of showing raw asterisks Replies came back with **bold** markup that displayed literally to users. Render the bubble as HTML (escaped first for safety) and convert **text** to ; newlines already handled by whitespace-pre-line. Co-Authored-By: Claude Opus 4.8 --- resources/views/partials/afia.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/afia.blade.php b/resources/views/partials/afia.blade.php index 6cd1521..14700d5 100644 --- a/resources/views/partials/afia.blade.php +++ b/resources/views/partials/afia.blade.php @@ -67,7 +67,7 @@
+ x-html="m.text.replace(/&/g,'&').replace(//g,'>').replace(/\*\*([^*]+?)\*\*/g,'$1')">