If you want to use a markdown ## header and want the text to depend on a variable, it doesn't keep the font of the header for the substituted text.
How to reproduce
A code fragment
from taipy import Gui
page = """
## Header <|{somevar}|>\
\n
Some text <|{somevar}|>
\n
"""
if __name__ == "__main__":
somevar = "This should be bold in header, normal in text"
Gui(page=page).run()
Expected behavior
The text on the header line should all be in the same font
Description
If you want to use a markdown
##
header and want the text to depend on a variable, it doesn't keep the font of the header for the substituted text.How to reproduce A code fragment
Expected behavior The text on the header line should all be in the same font
Screenshots
Runtime environment Please specify relevant indications.