changeset 120:d7e143175d9f default tip

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 05 Dec 2025 09:05:55 -0700
parents ec1a61bf5738
children
files src/chat.js
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;
 }