use sub instead of h6

This commit is contained in:
Nexus 2024-09-20 02:04:45 +01:00
parent eb1f4b69e4
commit b2c737b283

View file

@ -125,7 +125,7 @@ class MSCGetter(niobot.Module):
lines.append(f"[{data['title']}]({data['html_url']})") lines.append(f"[{data['title']}]({data['html_url']})")
if lines: if lines:
text = "\n".join((f"* {ln}" for ln in lines)) text = "\n".join((f"* {ln}" for ln in lines))
text += "\n\n<h6>To disable automatic MSC linking, please run `h!automsc disable`.</h6>" text += "\n\n<sub>To disable automatic MSC linking, please run `h!automsc disable`.</sub>"
return await self.bot.send_message( return await self.bot.send_message(
room, text, reply_to=message room, text, reply_to=message
) )