├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── biblatex_check.py ├── input.bib └── tests └── input.bib /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/README.md -------------------------------------------------------------------------------- /biblatex_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/biblatex_check.py -------------------------------------------------------------------------------- /input.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/input.bib -------------------------------------------------------------------------------- /tests/input.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pezmc/BibLatex-Check/HEAD/tests/input.bib --------------------------------------------------------------------------------