fix(seautils): fixed some broken regex
This commit is contained in:
parent
99cd13ccf1
commit
c4ef2a7d4b
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ def md(soup: BeautifulSoup, **options) -> Any | str:
|
|||
return MarkdownConverter(**options).convert_soup(soup)
|
||||
|
||||
def convert_rfc_references(text: str):
|
||||
return re.sub(r"\(RFC\s(\d+)\)", r"(https://www.rfc-editor.org/rfc/rfc\1.html)", text)
|
||||
return re.sub(r"\(\.rfc\s(\d+)", r"(https://www.rfc-editor.org/rfc/rfc\1.html", text)
|
||||
|
||||
class SeaUtils(commands.Cog):
|
||||
"""A collection of random utilities."""
|
||||
|
|
Loading…
Reference in a new issue