Florian Vuillemot
Florian Vuillemot

Reputation: 667

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

Upvotes: 0

Views: 64

Answers (1)

Florian Jacta
Florian Jacta

Reputation: 1521

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

from taipy import Gui

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

Upvotes: 1

Related Questions