gitextract__eefs9oe/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── checks.sh ├── docs/ │ ├── getting_started.md │ ├── index.md │ └── parameters.md ├── examples/ │ └── latexify_examples.ipynb ├── pyproject.toml └── src/ ├── integration_tests/ │ ├── __init__.py │ ├── algorithmic_style_test.py │ ├── function_expansion_test.py │ ├── integration_utils.py │ └── regression_test.py └── latexify/ ├── __init__.py ├── _version.py ├── analyzers.py ├── analyzers_test.py ├── ast_utils.py ├── ast_utils_test.py ├── codegen/ │ ├── __init__.py │ ├── algorithmic_codegen.py │ ├── algorithmic_codegen_test.py │ ├── codegen_utils.py │ ├── codegen_utils_test.py │ ├── expression_codegen.py │ ├── expression_codegen_test.py │ ├── expression_rules.py │ ├── expression_rules_test.py │ ├── function_codegen.py │ ├── function_codegen_match_test.py │ ├── function_codegen_test.py │ ├── identifier_converter.py │ ├── identifier_converter_test.py │ ├── latex.py │ └── latex_test.py ├── config.py ├── exceptions.py ├── frontend.py ├── frontend_test.py ├── generate_latex.py ├── generate_latex_test.py ├── ipython_wrappers.py ├── parser.py ├── parser_test.py ├── test_utils.py └── transformers/ ├── __init__.py ├── assignment_reducer.py ├── assignment_reducer_test.py ├── aug_assign_replacer.py ├── aug_assign_replacer_test.py ├── docstring_remover.py ├── docstring_remover_test.py ├── function_expander.py ├── function_expander_test.py ├── identifier_replacer.py ├── identifier_replacer_test.py ├── prefix_trimmer.py └── prefix_trimmer_test.py