From 93682bad8b4ff113db7a26096a1e79b56cb3f94d Mon Sep 17 00:00:00 2001 From: isaacclad Date: Thu, 11 Jun 2026 08:41:07 +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 19e827b..5c8a3b8 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')">