taipy icon indicating copy to clipboard operation
taipy copied to clipboard

BUG-use_reloader does not work when writing in a separate Markdown file

Open AlexandreSajus opened this issue 11 months ago • 0 comments

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

AlexandreSajus avatar Feb 26 '24 14:02 AlexandreSajus