(str)
| 498 | # =================== Check characters ====================== |
| 499 | |
| 500 | def does_str_containt_math(str): |
| 501 | math_indicators = ["equation", "\exp(", "\log(", "\sqrt(", "mathbf", "mathrm"] |
| 502 | # TODO: page [number] |
| 503 | containt_math = False |
| 504 | for math_indicator in math_indicators: |
| 505 | if math_indicator in str: |
| 506 | containt_math = True |
| 507 | break |
| 508 | |
| 509 | return containt_math |
| 510 | |
| 511 | |
| 512 | def check_contain_little_alphabet_char(docstring: str): |
no outgoing calls
no test coverage detected