# HG changeset patch # User Kim Alvefur # Date 1612970058 -3600 # Node ID 2bb11055e4bb4d06fac0930dd1c4982685daadc5 # Parent 09657f758f53f9069e176652baaeb12c9caf1d5c mod_pubsub_summary: Make titles *bold* to stand out more Hard to see where each post starts in certain clients. diff -r 09657f758f53 -r 2bb11055e4bb 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