Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2026-01-01 16:33:49 +01:00
parent 98d304a493
commit 4e8b0f83b4
4 changed files with 10 additions and 9 deletions
+3 -3
View File
@@ -275,9 +275,9 @@ def search_extensions(search_text, sort_column):
def make_wrappable_html(text: str) -> str:
text = html.escape(text)
text = re_snake_case.sub("<wbr />_", text)
return re_camelCase.sub(r"<wbr />\1", text)
text = html.escape(text)
text = re_snake_case.sub("<wbr />_", text)
return re_camelCase.sub(r"<wbr />\1", text)
def create_html(search_text, sort_column):