diff --git a/automation/autoload/kara-templater.lua b/automation/autoload/kara-templater.lua index a114f244c..e6a0fc82d 100644 --- a/automation/autoload/kara-templater.lua +++ b/automation/autoload/kara-templater.lua @@ -456,7 +456,11 @@ function apply_line(meta, styles, subs, line, templates, tenv) end else -- hmm, no main template for the line... put original text in - newline.text = newline.text .. line.text + if t.keeptags then + newline.text = newline.text .. line.text + else + newline.text = newline.text .. line.text_stripped + end end newline.effect = "fx" subs.append(newline)