From 5e7b56f400f6e0f03095cddfc2d3f150d37b120f Mon Sep 17 00:00:00 2001 From: isaacclad Date: Thu, 11 Jun 2026 08:40:54 +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 67e8912..fef7778 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')">