Bold and italics with taipy-gui

Question:

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()
Asked By: Vuillemot Florian

||

Answers:

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

from taipy import Gui

Gui(page="My ***famous*** app").run()
Answered By: Florian Jacta
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.