From c5e9acf3dc03eec78543f49ba61a3212d6dda477 Mon Sep 17 00:00:00 2001 From: garret Date: Tue, 15 Jun 2021 16:59:50 +0100 Subject: find -> match does the same thing that i was trying to do, but properly --- become-fansubber.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'become-fansubber.lua') diff --git a/become-fansubber.lua b/become-fansubber.lua index 363411a..376a630 100644 --- a/become-fansubber.lua +++ b/become-fansubber.lua @@ -1,7 +1,7 @@ script_name="CR Restyler" script_description="become a fansubber with a click of a button" script_author = "garret" -script_version = "2" +script_version = "2021-06-15" include("cleantags.lua") -- Main -> Default @@ -12,10 +12,10 @@ include("cleantags.lua") function add_tags(line) local txt = line.text local style = line.style - if style:find("Italics") then + if style:match("Italics") then txt="{\\i1}"..txt end - if style:find("Top") then + if style:match("Top") then txt="{\\an8}"..txt end line.text = cleantags(txt) @@ -24,7 +24,7 @@ end function change_styles(line) local style = line.style - if style:find("Top") or style:find("Italics") or style:find("Main") or style:find("Flashback") then + if style:match("Top") or style:match("Italics") or style:match("Main") or style:match("Flashback") then line.style="Default" end return line -- cgit v1.2.3-70-g09d2