fix(seautils): removed big gap at the bottom of rfc embeds
This commit is contained in:
parent
2d895d16c9
commit
b9f0dbf98a
1 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,8 @@ def md(soup: BeautifulSoup, **options) -> Any | str:
|
||||||
def convert_rfc_references(text: str, number: int) -> str:
|
def convert_rfc_references(text: str, number: int) -> str:
|
||||||
one = re.sub(r"\(\.\/rfc(\d+)", r"(https://www.rfc-editor.org/rfc/rfc\1.html", text)
|
one = re.sub(r"\(\.\/rfc(\d+)", r"(https://www.rfc-editor.org/rfc/rfc\1.html", text)
|
||||||
two = re.sub(r"\((#(?:section|page)-\d+(?:.\d+)?)\)", f"(https://www.rfc-editor.org/rfc/rfc{number}.html\1)", one)
|
two = re.sub(r"\((#(?:section|page)-\d+(?:.\d+)?)\)", f"(https://www.rfc-editor.org/rfc/rfc{number}.html\1)", one)
|
||||||
return two
|
three: str = re.sub(r"\n{3,}", "\n\n", two)
|
||||||
|
return three
|
||||||
|
|
||||||
class SeaUtils(commands.Cog):
|
class SeaUtils(commands.Cog):
|
||||||
"""A collection of random utilities."""
|
"""A collection of random utilities."""
|
||||||
|
|
Loading…
Reference in a new issue