├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── pipeline.ipynb └── python ├── generate_docs.py └── topics_files_request.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/pipeline.ipynb -------------------------------------------------------------------------------- /python/generate_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/python/generate_docs.py -------------------------------------------------------------------------------- /python/topics_files_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/auto-github-docs-generator/HEAD/python/topics_files_request.txt --------------------------------------------------------------------------------