diff --git a/main.py b/main.py index 8866aa3..60038e5 100644 --- a/main.py +++ b/main.py @@ -31,15 +31,15 @@ def only_alphanumerics(text): """ Detects if the text contains only alphanumerics. """ - return re.search(r"[^\w\'\-]", text) is None + return re.search(r"[^\w\-]", text) is None def make_bold_part(token): """ Makes bold text. """ - if (not only_alphanumerics(token)) or len(token) <= 2: - return token + if (not only_alphanumerics(token)) or len(token) <= 3: + return f"**{token[0]}**{token[1:]}" else: mid_token = round(len(token)/2) return f"**{token[0:mid_token]}**{token[mid_token:]}"