diff options
| author | Edwin <[email protected]> | 2021-03-29 00:38:34 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-28 18:38:34 -0400 |
| commit | 31ee3fafc17c552fa972dfa9bd0fc38915538684 (patch) | |
| tree | 56abdd0185dd99b5016f972366dbda21cd52d23b /discord/message.py | |
| parent | [commands] Only remove top level commands on cog load failure (diff) | |
| download | discord.py-31ee3fafc17c552fa972dfa9bd0fc38915538684.tar.xz discord.py-31ee3fafc17c552fa972dfa9bd0fc38915538684.zip | |
Add remove_markdown helper function
Diffstat (limited to 'discord/message.py')
| -rw-r--r-- | discord/message.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/message.py b/discord/message.py index c681d33e..da2e9938 100644 --- a/discord/message.py +++ b/discord/message.py @@ -808,9 +808,9 @@ class Message(Hashable): .. note:: - This *does not* escape markdown. If you want to escape - markdown then use :func:`utils.escape_markdown` along - with this function. + This *does not* affect markdown. If you want to escape + or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` + respectively, along with this function. """ transformations = { |