├── .devcontainer └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── docs └── index.md ├── mkdocs.yml ├── pyproject.toml ├── src └── mkdocs_azure_pipelines │ ├── __init__.py │ ├── ado_pipe_to_md.py │ ├── cli.py │ └── plugin.py ├── tests ├── __init__.py ├── resources │ ├── folder_with_pipelines │ │ ├── empty-template.yml │ │ ├── folder_in_folder_with_pipelines │ │ │ ├── full-pipeline.yml │ │ │ └── steps-template-in-folder-in-folder.yml │ │ └── no-title-template.yml │ ├── jobs-template.yml │ ├── steps-template.yml │ └── test-pipe.md ├── test_ado_pipe_to_md.py ├── test_cli.py └── test_plugin.py └── uv.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Home 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/mkdocs_azure_pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mkdocs_azure_pipelines/ado_pipe_to_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/src/mkdocs_azure_pipelines/ado_pipe_to_md.py -------------------------------------------------------------------------------- /src/mkdocs_azure_pipelines/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/src/mkdocs_azure_pipelines/cli.py -------------------------------------------------------------------------------- /src/mkdocs_azure_pipelines/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/src/mkdocs_azure_pipelines/plugin.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Used by pytest-cov/coverage 2 | -------------------------------------------------------------------------------- /tests/resources/folder_with_pipelines/empty-template.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/folder_with_pipelines/folder_in_folder_with_pipelines/full-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/resources/folder_with_pipelines/folder_in_folder_with_pipelines/full-pipeline.yml -------------------------------------------------------------------------------- /tests/resources/folder_with_pipelines/folder_in_folder_with_pipelines/steps-template-in-folder-in-folder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/resources/folder_with_pipelines/folder_in_folder_with_pipelines/steps-template-in-folder-in-folder.yml -------------------------------------------------------------------------------- /tests/resources/folder_with_pipelines/no-title-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/resources/folder_with_pipelines/no-title-template.yml -------------------------------------------------------------------------------- /tests/resources/jobs-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/resources/jobs-template.yml -------------------------------------------------------------------------------- /tests/resources/steps-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/resources/steps-template.yml -------------------------------------------------------------------------------- /tests/resources/test-pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/resources/test-pipe.md -------------------------------------------------------------------------------- /tests/test_ado_pipe_to_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/test_ado_pipe_to_md.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wesztman/mkdocs-azure-pipelines/HEAD/uv.lock --------------------------------------------------------------------------------