mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
12 lines
208 B
Python
12 lines
208 B
Python
import re
|
|
|
|
HTML_RE = re.compile(r'<[^>]+>')
|
|
|
|
|
|
def strip_html(string: str):
|
|
return HTML_RE.sub('', string)
|
|
|
|
|
|
def bold(text: str) -> str:
|
|
return '<span style="font-weight: bold">{}</span>'.format(text)
|