mod_pubsub_summary: Make titles *bold* to stand out more
authorKim Alvefur <zash@zash.se>
Wed, 10 Feb 2021 16:14:18 +0100
changeset 4442 2bb11055e4bb
parent 4441 09657f758f53
child 4443 6ae1c7b9c58b
mod_pubsub_summary: Make titles *bold* to stand out more Hard to see where each post starts in certain clients.
mod_pubsub_summary/mod_pubsub_summary.lua
--- a/mod_pubsub_summary/mod_pubsub_summary.lua	Wed Feb 10 16:06:30 2021 +0100
+++ b/mod_pubsub_summary/mod_pubsub_summary.lua	Wed Feb 10 16:14:18 2021 +0100
@@ -32,7 +32,7 @@
 	end
 	local summary;
 	if title and content and content:sub(1, #title) ~= title then
-		summary = title .. "\n\n" .. content;
+		summary = "*" .. title .. "*\n\n" .. content;
 	elseif title or content then
 		summary = content or title;
 	end