├── .github └── workflows │ ├── deploy-page.yml │ └── validate-url.yml ├── .gitignore ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── banner.png ├── docs ├── _dev_notes.md ├── index.md ├── overrides │ └── partials │ │ └── toc-item.html └── stylesheets │ └── extra.css ├── mkdocs.yml ├── mkindex.py └── requirements.txt /.github/workflows/deploy-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/.github/workflows/deploy-page.yml -------------------------------------------------------------------------------- /.github/workflows/validate-url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/.github/workflows/validate-url.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | venv/ 3 | docs/*png 4 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/banner.png -------------------------------------------------------------------------------- /docs/_dev_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/docs/_dev_notes.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/overrides/partials/toc-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/docs/overrides/partials/toc-item.html -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mkindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/mkindex.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eseckel/ai-for-grant-writing/HEAD/requirements.txt --------------------------------------------------------------------------------