docs: frappe.bold
This commit is contained in:
parent
d5ccb51251
commit
0fa0d1ff0e
1 changed files with 2 additions and 1 deletions
|
|
@ -2297,7 +2297,8 @@ def get_desk_link(doctype, name):
|
|||
return html.format(doctype=doctype, name=name, doctype_local=_(doctype))
|
||||
|
||||
|
||||
def bold(text):
|
||||
def bold(text: str) -> str:
|
||||
"""Returns `text` wrapped in `<strong>` tags."""
|
||||
return f"<strong>{text}</strong>"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue