Internally in our team, we did the same. For our Valo partner/client
documentation, we used mkdocs as our static site generator. Static is
just fast and relatively easy to use. All our developers know how to use
Markdown, and it is also a great way to add code snippets and such.
A couple of months, we were discussing to start writing some developer
guidance. Which tools are we using, how do we do things, and why? The
platform’s idea would be to make it easier for anyone new to quickly get
started and get a good view of how our team works.
As this was developer focussed in the first place, we started thinking
about a static site. Although we opted for Azure DevOps wiki, as we are
thinking about moving towards GitHub, we went for mkdocs. The platform
should also consolidate all the documentation that lives in the project
repository, wiki, and old intranet (soon to be removed).
After a couple of iterations, I asked the question: are we doing the
right thing here? Is this platform the right thing to use? After that, I
proposed the crazy idea to move all our documentation to SharePoint.
The first thought was, it would be hard to maintain. As a developer, you
want to add the documentation as quickly as possible so that you can go
and focus on your code again. Going to SharePoint meant our developers
would have to add multiple web parts on the page (text, images,
snippets, …).
That is when the second crazy idea came. What if I create a static site
generator for our team?
Doctor came to life
After that meeting, I did a quick proof of concept with the CLI for
Microsoft 365 and Markdown web
part in SharePoint. I never saw a real use-case in the web part, but it
makes total sense for Doctor.
After some fiddling around, and some tests, it would work. All I had to
do was create a new CLI for Microsoft 365 command, which allows updating
the contents/properties of a web part.
[INFO:] The required
command to create was spo page control
set.
Once I created control set command, my next task was to build an
internal tool we could use during a CI/CD. As I saw value for others and
as Valo, we want to help others in the community. I made this an
open-source project.
[INFO:] The reason for
using the CLI for Microsoft is because it is feature-rich, and I do
not want to reinvent the wheel. Using the CLI allows the tool to open
many more possibilities in the future and build upon the shoulder of
giants.
What makes Doctor great?
The great thing about Doctor is that you can keep the documentation as
close to your code as you want. Of course, you do not have only to use
it for development projects. You can also use it for other scenarios
like documentation and architecture projects.
The tool itself will keep the pages up to date on SharePoint. During
this process, it does the following:
Check if the page exists. If not, it will create the page
Check if the Markdown web part with a specific ID exists. If not,
add it
Update the Markdown from the current page to the web part
The process is straightforward but so powerful.
What makes it great to move your documentation with Doctor to SharePoint?
For us, the move of our documentation to SharePoint has the following
advantages:
Dogfooding (as we have an intranet project, it is a great way to
dogfood it as well).
One platform to rule it all, but still, use the most familiar tools
to use. For instance, HR can use SharePoint, but Development can use
Markdown, and it all ends up on the same platform.
Powerful search capabilities of Microsoft 365
You can modify the page, add web parts to it, change its layout, and
so much more as long as you keep the Markdown web part on the page.
It will only update that.
Your ID department will love it as they can manage security and do
not have yet another platform to support it.
Getting started
If you want to get started, check out the documentation on
getdoctor.io.
Installing the doctor on your machine can be done by
running: npm i -g @estruyf/doctor.
To make your start as easy as possible, I shared a sample repository for
you to use: doctor sample.
Clone it, and get started.
What do you think?
Of course, you like your tools and see value in them, but what do you
think? Would this be something you see yourself using? Do you face
similar challenges in your company when it comes to where to write
documentation?
Happy to chat about it in
the discussion section
of the repository.
Feedback?
In case you have feedback/ideas. Feel free to add them to
the discussions section
as well.
Can I contribute?
Yes, you can! It is for the community, so if you see the value and want
to add something, please do a PR. I would be pleased to merge it and
credit you with our changelog and socials.
Showcase how you are using Doctor
If you want, you can also showcase how you are using Doctor in your
project/solution/company. Feel free to checkout showcase
Doctor to find out more about how you
can do this.
Happy documenting