style: some weird black code reformatting

This commit is contained in:
Macintxsh 2025-05-21 04:34:01 +03:00
parent 673a3768b8
commit 9ad1ce38ee
Signed by: mctaylors
GPG key ID: 4EEF4F949A266EE2
5 changed files with 82 additions and 53 deletions

View file

@ -1,14 +1,18 @@
def bold(s: str) -> str:
return f"<b>{s}</b>"
def italic(s: str) -> str:
return f"<i>{s}</i>"
def strikethrough(s: str) -> str:
return f"<s>{s}</s>"
def hyperlink(s: str, href: str) -> str:
return f"<a href='{href}'>{s}</a>"
def code(s: str) -> str:
return f"<code>{s}</code>"
return f"<code>{s}</code>"