Files
SillyTavern/public/scripts/extensions
Small Eggs 145136059e Fix tts.skip_tags's regex to match newlines
The extension_settings.tts.skip_tags setting is meant to skip sending
tags and their content to the TTS API provider. The original regular
expression matched content inside tags with ".*?". Unfortunately,
Javascript's engine does *not* match newlines on the "." without the /s
flag.

The /s flag was added in ES2018. To be more compatible, the regex
has been changed to "[\s\S]+?". This gives similar performance (instead
of using capture groups) and matches all content within a tag, as the
original regex intended.
2025-01-27 17:43:24 -08:00
..
2024-10-16 23:11:13 +03:00
2025-01-12 00:42:58 +07:00
2025-01-09 22:39:40 +02:00
2024-12-07 17:10:26 +02:00
2024-12-27 13:02:06 +00:00
2025-01-12 07:20:36 +13:00
2025-01-07 20:07:41 +02:00