Reputation: 1512
I have been tasked with documenting how we are going to use Azure DevOps. This is something new to our team.
I am working on a wiki for the vaious How Tos, guides, standards, etc.
I want to force users to read pages in a certain order. But I don't necessarily want them to go directly to a page in the tree.
Here is my structure
So for Repos, if the reader needs to migrate an existing git repo to Azure DevOps, I want to the read
But I don't want those pages visible in the tree. I will have another page with links to these pages.
Is this even possible? My research has yielded little in the way of help.
Upvotes: 4
Views: 5426
Reputation: 1784
Yes, it's quite possible. Since Wikis supports links (even relative links). You can set up Next and Previous links in each page to force people reading the documents in a certain order.
The files can easily be hidden by starting the file name with a dot as in .HideMe.md
.
The Tree structure can also be replaced alltogether if you add an .order
file per folder.
Read more about DevOps Wiki at MS Docs - Wiki files and file structure
Upvotes: 1
Reputation: 2084
In brief I'd say no. You can't do all you've outlined using Azure DevOps Wiki. I believe I heard these needs:
Azure DevOps Wiki could be made to meet some of these needs but I know of no way to stitch them together as you've outlined.
It sounds like you want to create a tightly orchestrated computer-based-training course (CBT). Wiki isn't the right tool for that. Wiki is more about open, loosely-structured, collaborative knowledge sharing.
Upvotes: 1
Reputation: 109
Files and folders starting with a '.' are now ignored...
https://developercommunity.visualstudio.com/idea/366488/hide-folders-in-wiki-like-pages.html
Upvotes: 7