fix(seautils): actually actually fixed incorrect regex
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 25s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 40s

This commit is contained in:
Seaswimmer 2024-05-28 20:39:19 -04:00
parent c4ef2a7d4b
commit 29b6a2141a
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -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."""