We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 428aa5b commit 3c27e81Copy full SHA for 3c27e81
manim/mobject/text/tex_mobject.py
@@ -306,7 +306,9 @@ def __init__(
306
def _break_up_tex_strings(self, tex_strings: Sequence[str]) -> list[str]:
307
# Separate out anything surrounded in double braces
308
pre_split_length = len(tex_strings)
309
- tex_strings_brace_splitted = [re.split("{{(.*?)}}", str(t)) for t in tex_strings]
+ tex_strings_brace_splitted = [
310
+ re.split("{{(.*?)}}", str(t)) for t in tex_strings
311
+ ]
312
tex_strings_combined = sum(tex_strings_brace_splitted, [])
313
if len(tex_strings_combined) > pre_split_length:
314
self.brace_notation_split_occurred = True
0 commit comments