├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── docs ├── CONTRIBUTING.md ├── index.md ├── open-electives.md ├── semester-1.md ├── semester-2.md ├── semester-3.md └── semester-4.md ├── mkdocs.yml ├── requirements.txt ├── resources.yaml └── scripts ├── init_readme.md ├── yaml_to_docs.py └── yaml_to_readme.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/open-electives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/open-electives.md -------------------------------------------------------------------------------- /docs/semester-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/semester-1.md -------------------------------------------------------------------------------- /docs/semester-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/semester-2.md -------------------------------------------------------------------------------- /docs/semester-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/semester-3.md -------------------------------------------------------------------------------- /docs/semester-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/docs/semester-4.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/resources.yaml -------------------------------------------------------------------------------- /scripts/init_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/scripts/init_readme.md -------------------------------------------------------------------------------- /scripts/yaml_to_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/scripts/yaml_to_docs.py -------------------------------------------------------------------------------- /scripts/yaml_to_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aflah02/SemWiseResourcesIIIT/HEAD/scripts/yaml_to_readme.py --------------------------------------------------------------------------------