diff src/chat.js @ 120:d7e143175d9f

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 05 Dec 2025 09:05:55 -0700
parents 04933d5ba05a
children b96d598aa7d1
line wrap: on
line diff
--- a/src/chat.js	Thu Dec 04 23:16:32 2025 -0700
+++ b/src/chat.js	Fri Dec 05 09:05:55 2025 -0700
@@ -255,7 +255,7 @@
 let filebinUrlRegex = />https:\/\/filebin.net\/[0-9a-f]+\/([^<]+)</g;
 
 function handleMarkdown(text) {
-	text = converter.render(text);
+	text = converter.renderInline(text);
 	text = text.replace( filebinUrlRegex, '>$1<' );
 	return text;
 }