diff --git a/modules/html_generator.py b/modules/html_generator.py index 1b687ade..c5eba5a8 100644 --- a/modules/html_generator.py +++ b/modules/html_generator.py @@ -150,6 +150,7 @@ def convert_to_markdown_wrapped(string, use_cache=True): def generate_basic_html(string): + convert_to_markdown.cache_clear() string = convert_to_markdown(string) string = f'
{string}
' return string