You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After the SkyShowtime mentioned in my previous topic, I'd like to mention also some specifics on AppleTV+.
Here is an example:
AppleTV_example_Pachinko.zip
For now, I use regular expressions to deal with these:
The italic:
<font color="styledotitalic">((.*?)|(.*?\n.*?))</font>
--><i>$1</i>
Colors:
<c.styledotaqua>((.*?)|(.*?\n.*?))</c>
--><font color="#00FFFF">$1</font>
<c.styledotEAC118>((.*?)|(.*?\n.*?))</c>
--><font color="#EAC118">$1</font>
Combination:
<c.styledotaquadotitalic>((.*?)|(.*?\n.*?))</c>
--><font color="#00FFFF"><i>$1</i></font>
<c.styledotEAC118dotitalic>((.*?)|(.*?\n.*?))</c>
--><font color="#EAC118"><i>$1</i></font>
So maybe it can be added among the supported formats by default?
Beta Was this translation helpful? Give feedback.
All reactions