├── .github └── workflows │ └── toc.yml ├── .nojekyll ├── README.md ├── _sidebar.md ├── assets └── style.css └── index.html /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narVidhai/tamil-nlp-catalog/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narVidhai/tamil-nlp-catalog/HEAD/README.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- 1 | * [Tamil NLP Catalog](/) 2 | -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narVidhai/tamil-nlp-catalog/HEAD/assets/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narVidhai/tamil-nlp-catalog/HEAD/index.html --------------------------------------------------------------------------------