adtk wiki
The wiki command group lets you list and read Azure DevOps wiki pages. Wikis in Azure DevOps are markdown-native.
Shared Flags
Section titled “Shared Flags”| Flag | Short | Description |
|---|---|---|
--project | -p | Project name (required) |
List all wikis in a project.
adtk wiki list --project MyProjectID NAME TYPEa1b2c3d4-e5f6-7890-abcd-ef1234567890 Project Wiki projectWikib2c3d4e5-f6a7-8901-bcde-f12345678901 Code Wiki codeWiki
2 wikisGet a wiki page by its path. Displays the page content (markdown).
adtk wiki get <wiki-id> <page-path> --project MyProjectExample:
adtk wiki get "Project Wiki" /Home -p MyProject Path: /Home ID: 1
# Welcome to the Project Wiki
This is the home page of the project wiki.List all pages in a wiki.
adtk wiki pages <wiki-id> --project MyProjectExample:
adtk wiki pages "Project Wiki" -p MyProjectID PATH ORDER PARENT1 /Home 0 no2 /Architecture 1 yes3 /Architecture/Backend 0 no4 /Architecture/Frontend 1 no
4 pages