diff options
author | 2020-09-05 23:48:39 +0700 | |
---|---|---|
committer | 2020-09-05 23:48:39 +0700 | |
commit | a3de2cd9f9efdfdcc42e68ba61c61994cc0cb855 (patch) | |
tree | 2c901966503d8df6d067800067cb6576df6e6cc8 | |
parent | Disable everyone_ping filter in AntiSpam cog (diff) | |
parent | Merge branch 'master' into text-link-fix (diff) |
Merge pull request #1144 from Numerlor/text-link-fix
Move bolding markdown outside of text link in help channel messages.
-rw-r--r-- | bot/cogs/help_channels.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py index 541c6f336..0f9cac89e 100644 --- a/bot/cogs/help_channels.py +++ b/bot/cogs/help_channels.py @@ -36,7 +36,7 @@ the **Help: Dormant** category. Try to write the best question you can by providing a detailed description and telling us what \ you've tried already. For more information on asking a good question, \ -check out our guide on [**asking good questions**]({ASKING_GUIDE_URL}). +check out our guide on **[asking good questions]({ASKING_GUIDE_URL})**. """ DORMANT_MSG = f""" @@ -47,7 +47,7 @@ channel until it becomes available again. If your question wasn't answered yet, you can claim a new help channel from the \ **Help: Available** category by simply asking your question again. Consider rephrasing the \ question to maximize your chance of getting a good answer. If you're not sure how, have a look \ -through our guide for [**asking a good question**]({ASKING_GUIDE_URL}). +through our guide for **[asking a good question]({ASKING_GUIDE_URL})**. """ CoroutineFunc = t.Callable[..., t.Coroutine] |