My mkdocs.yml
file has nav
titles that are shortened to fit onto only 1 line each in the left-side navigation, and I want the .md
Markdown page title to be the un-abbreviated full-length title.
For example, while my mkdocs.yml
file contains:
nav:
- BD, ML, DS: Big_Data,_Machine_Learning,_Data_Science.md
- AI, VI: Artificial_Intelligence,_Video_Intelligence.md
I want the .md
page title to be:
Big Data, Machine Learning, and Data Science
...instead of copying/using the mkdocs.yml
nav title:
BD, ML, DS
When I added the Markdown Page Title to the 1st line (# Big Data...
) of my .md
file, I get both the page title I want and the inherited mkdocs.yml
nav
title:
BD, ML, DS
7 min (1,939 words)
Big Data, Machine Learning, and Data Science
It seems the answer is in the mkdocs.yml
file to specify a different/second "page display" name, but many Google searches have turned up nothing.
What other methods have you tried or heard of? Thanks!