diff --git a/data/embeds/ufora.py b/data/embeds/ufora.py index 613c932..bdb86eb 100644 --- a/data/embeds/ufora.py +++ b/data/embeds/ufora.py @@ -46,6 +46,8 @@ class UforaNotification: return desc def _clean_content(self, text: str): + # Escape *-characters because they mess up the layout + text = text.replace("*", "\\*") return md(text) def _get_published(self):