From 5f703ac8d6e1cf0f5e084b04cb5bdd2585b9a033 Mon Sep 17 00:00:00 2001 From: Terry Lewis Date: Wed, 12 Feb 2020 23:50:52 +0000 Subject: [PATCH] Returning index.md to the `pages` list in mkdocs.yml The version of mkdocs that is used by readthedocs doesn't include all files that are present. Instead, a file must be referenced in the `pages` list of mkdocs.yml. Newer versions of mkdocs have different behavior, which would allow us to achieve the desired presentation/structure in the nav...but I'm restoring `index.md` to the `pages` list because this is just what we have to work with. --- mkdocs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index b64b7c0..2d27063 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,7 @@ site_name: Pure Storage FlashBlade REST 1.9 Python SDK pages: -- About: +- Overview: + - Get Started: index.md - License: about/license.md - Endpoints: - Authentication: AuthenticationApi.md