danbooru-bot/html_parser.py
mctaylors 25768e4c90
refactor: add html_parser.py
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2025-03-10 15:16:00 +03:00

14 lines
No EOL
300 B
Python

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