(expr: str)
| 1157 | |
| 1158 | |
| 1159 | def _has_left_right_mismatch(expr: str) -> bool: |
| 1160 | return len(re.findall(r"(?<!\\)\\left\b", expr)) != len(re.findall(r"(?<!\\)\\right\b", expr)) |
| 1161 | |
| 1162 | |
| 1163 | def _has_double_escaped_tex_command(expr: str) -> bool: |
no outgoing calls
no test coverage detected