Search code examples
pythonpython-3.xtaipy

Bold and italics with taipy-gui


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()

Solution

  • The usual Markdown syntax should work in Taipy. For example, you can use ***:

    from taipy import Gui
    
    Gui(page="My ***famous*** app").run()