-
Hello, I just discovered mkdocs which is a nice little tool for simple documentation worflow like what I'm trying to implement:
I'm not trying to use any complex feature for now (like multiple versions), and don't want to My problem is that I don't see the version displayed even with
Is it possible to do? update: I found some issues/discussions talking about version display but most were asking in a multi-versioning setup or using mike, and none asking in my simple use case |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You currently cannot set a version string explicitly in You could in theory add support yourself by using theme extension though. |
Beta Was this translation helpful? Give feedback.
You currently cannot set a version string explicitly in
mkdocs.yml
. You need to use a tool that supports proper versioning, and currently, the only tool supported ismike
, as is noted in the documentation. The reason for this is that proper version support needs a lot more logic than just setting a version, which is why we decided to natively supportmike
.You could in theory add support yourself by using theme extension though.