gitextract__e_uw1ef/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ └── workflows/ │ ├── generate-html.yml │ └── validate-pr.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── awesome_3dgs_papers.yaml ├── editor.py ├── index.html ├── requirements.txt └── src/ ├── __init__.py ├── arxiv_integration.py ├── components/ │ ├── __init__.py │ ├── dialogs.py │ ├── thumbnail.py │ └── widgets.py ├── fix_date.py ├── generate.py ├── helper.py ├── paper_generator.py ├── paper_schema.py ├── static/ │ ├── css/ │ │ ├── base.css │ │ ├── components.css │ │ └── responsive.css │ └── js/ │ ├── filters.js │ ├── main.js │ ├── navigation.js │ ├── selection.js │ ├── sharing.js │ ├── state.js │ └── utils.js ├── template_engine.py ├── templates/ │ ├── index.html │ └── paper_card.html ├── utils.py ├── validate_yaml.py └── yaml_editor.py