In python-3.x
with tkinter
GUI, I developed a program with a regular simple window.
I want to show a markdown format string saved in a string called markdownText
on program window:
markdownText='_italic_ or **bold**'
desired output is:
italic or bold
Is there any solution?