How to put a string in bold and italics on taipy-gui?
For example, I would like the word famous
to have both styles.
from taipy import Gui
Gui(page="My *famous* app").run()
The usual Markdown syntax should work in Taipy. For example, you can use ***
:
from taipy import Gui
Gui(page="My ***famous*** app").run()