From c6ea67bbdbb4b1f7de7d6f0a8d6909c54c62c348 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Tue, 2 Sep 2025 10:22:03 -0700 Subject: [PATCH] Lint --- modules/html_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/html_generator.py b/modules/html_generator.py index 9f8c28e5..492b52bd 100644 --- a/modules/html_generator.py +++ b/modules/html_generator.py @@ -262,7 +262,7 @@ def process_markdown_content(string): modified_content = content.replace('*', LATEX_ASTERISK_PLACEHOLDER) return f'\\({modified_content}\\)' - return match.group(0) # Fallback + return match.group(0) # Fallback # Make \[ \] LaTeX equations inline pattern = r'^\s*\\\[\s*\n([\s\S]*?)\n\s*\\\]\s*$'