Does anybody know how to change the menu-order when using .md
?
I can't find it. I know it's possible with other types like .rst
, but I use .md
Thank you!
Does anybody know how to change the menu-order when using .md
?
I can't find it. I know it's possible with other types like .rst
, but I use .md
Thank you!
Include a mkdocs.yml file in your root directory that contains:
pages:
- [intro.md]
- [first_part.md]
- [second_part.md]
see also http://www.mkdocs.org/user-guide/configuration/#pages
As per the latest documentation, to change the menu-order, include the following in the mkdocs.yml file:
nav:
- 'intro.md'
- 'page1.md'
- 'so_on.md'