From d2ceac28bd5deefcdc8d68a38999ccbf4e31ea4a Mon Sep 17 00:00:00 2001 From: Abdo Date: Mon, 2 Mar 2026 22:27:07 +0300 Subject: [PATCH] Update AV_TAGS regex --- rslib/src/text.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/rslib/src/text.rs b/rslib/src/text.rs index 037366c2805..2bc873ab750 100644 --- a/rslib/src/text.rs +++ b/rslib/src/text.rs @@ -154,11 +154,6 @@ static AV_TAGS: LazyLock = LazyLock::new(|| { Regex::new( r"(?xs) \[sound:(.+?)\] # 1 - the filename in a sound tag - | - \[anki:tts\] - \[(.*?)\] # 2 - arguments to tts call - (.*?) # 3 - field text - \[/anki:tts\] ", ) .unwrap()