How to show markdown format text in tkinter?

In python-3.xthe tkinterGUI, I developed a program with the usual simple window.

I want to show a markdown format string stored in a string markdownTextin a program window:

markdownText='_italic_ or **bold**'

desired result:

italics or bold

Is there any solution?

+4
source share
1 answer

I was just looking for a similar solution, and it really doesn't look like there is a default module / class / library for the combination of Python, TkInter and markdowns. However, while continuing the search, the following options were discovered:

, html, tkinter.

+5