From 7285c75ad131c2bb1cbb6ed55f1a5df37eea550f Mon Sep 17 00:00:00 2001 From: Avinash Maurya <64926215+razorblack@users.noreply.github.com> Date: Sat, 17 Aug 2024 12:00:44 +0530 Subject: [PATCH] Remove redundant quotes in navigation part of writing-your-docs.md --- docs/user-guide/writing-your-docs.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/user-guide/writing-your-docs.md b/docs/user-guide/writing-your-docs.md index d26a68f9..c56c0f74 100644 --- a/docs/user-guide/writing-your-docs.md +++ b/docs/user-guide/writing-your-docs.md @@ -110,8 +110,8 @@ A minimal navigation configuration could look like this: ```yaml nav: - - 'index.md' - - 'about.md' + - index.md + - about.md ``` All paths in the navigation configuration must be relative to the `docs_dir` @@ -126,8 +126,8 @@ in the `nav` setting add a title right before the filename. ```yaml nav: - - Home: 'index.md' - - About: 'about.md' + - Home: index.md + - About: about.md ``` Note that if a title is defined for a page in the navigation, that title will be @@ -139,13 +139,13 @@ section title. For example: ```yaml nav: - - Home: 'index.md' - - 'User Guide': - - 'Writing your docs': 'writing-your-docs.md' - - 'Styling your docs': 'styling-your-docs.md' + - Home: index.md + - User Guide: + - Writing your docs: writing-your-docs.md + - Styling your docs: styling-your-docs.md - About: - - 'License': 'license.md' - - 'Release Notes': 'release-notes.md' + - License: license.md + - Release Notes': release-notes.md ``` With the above configuration we have three top level items: "Home", "User Guide"