This commit is contained in:
Vinícius Moreira
2020-04-13 11:49:28 -03:00
parent 83aab1ff55
commit 01a60ea686
165 changed files with 12778 additions and 6171 deletions

View File

@@ -9,3 +9,7 @@ def strip_html(string: str):
def bold(text: str) -> str:
return '<span style="font-weight: bold">{}</span>'.format(text)
def link(url: str) -> str:
return '<a href="{}">{}</a>'.format(url, url)