diff options
-rw-r--r-- | bot/cogs/doc/parsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/doc/parsing.py b/bot/cogs/doc/parsing.py index a2c6564b3..79f3bbf69 100644 --- a/bot/cogs/doc/parsing.py +++ b/bot/cogs/doc/parsing.py @@ -262,4 +262,4 @@ async def get_symbol_markdown(http_session: ClientSession, symbol_data: "DocItem signature = _get_signatures(symbol_heading) description = _get_symbol_description(symbol_heading) - return _parse_into_markdown(signature, description, symbol_data.url) + return _parse_into_markdown(signature, description.replace('ΒΆ', ''), symbol_data.url) |