├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.rst ├── setup.cfg ├── setup.py ├── src └── ansible_doc_extractor │ ├── __init__.py │ ├── cli.py │ └── templates │ ├── module.md.j2 │ └── module.rst.j2 └── tests └── integration ├── basic ├── ad_auth_provider.py └── run.sh └── doc_fragments ├── ansible_collections └── sensu │ └── sensu_go │ └── plugins │ ├── doc_fragments │ ├── auth.py │ ├── name.py │ ├── requirements.py │ └── state.py │ └── modules │ └── ad_auth_provider.py └── run.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/README.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/setup.py -------------------------------------------------------------------------------- /src/ansible_doc_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ansible_doc_extractor/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/src/ansible_doc_extractor/cli.py -------------------------------------------------------------------------------- /src/ansible_doc_extractor/templates/module.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/src/ansible_doc_extractor/templates/module.md.j2 -------------------------------------------------------------------------------- /src/ansible_doc_extractor/templates/module.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/src/ansible_doc_extractor/templates/module.rst.j2 -------------------------------------------------------------------------------- /tests/integration/basic/ad_auth_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/basic/ad_auth_provider.py -------------------------------------------------------------------------------- /tests/integration/basic/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/basic/run.sh -------------------------------------------------------------------------------- /tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/auth.py -------------------------------------------------------------------------------- /tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/name.py -------------------------------------------------------------------------------- /tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/requirements.py -------------------------------------------------------------------------------- /tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/doc_fragments/state.py -------------------------------------------------------------------------------- /tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/modules/ad_auth_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/doc_fragments/ansible_collections/sensu/sensu_go/plugins/modules/ad_auth_provider.py -------------------------------------------------------------------------------- /tests/integration/doc_fragments/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlab-steampunk/ansible-doc-extractor/HEAD/tests/integration/doc_fragments/run.sh --------------------------------------------------------------------------------