taipy
taipy copied to clipboard
BUG-use_reloader does not work when writing in a separate Markdown file
Example:
- I have a
main.py
Python file:
from taipy.gui import Gui, Markdown
page = Markdown("page.md")
Gui(page).run(use_reloader=True)
- I also have a
page.md
Markdown file:
# Hello
If I run main.py
, it does show a webpage with Hello
.
But when I change the contents of page.md
, save the file, and reload the page, the page does not get updated with my changes even though use_reloader
is set to True