Skip to content

Commit 695d8ed

Browse files
Merge pull request mkdocs#3808 from razorblack/master
Remove redundant quotes in navigation part of writing-your-docs.md
2 parents 347e79f + c722a0f commit 695d8ed

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

docs/user-guide/writing-your-docs.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ A minimal navigation configuration could look like this:
110110

111111
```yaml
112112
nav:
113-
- 'index.md'
114-
- 'about.md'
113+
- index.md
114+
- about.md
115115
```
116116
117117
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.
126126

127127
```yaml
128128
nav:
129-
- Home: 'index.md'
130-
- About: 'about.md'
129+
- Home: index.md
130+
- About: about.md
131131
```
132132

133133
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:
139139

140140
```yaml
141141
nav:
142-
- Home: 'index.md'
143-
- 'User Guide':
144-
- 'Writing your docs': 'writing-your-docs.md'
145-
- 'Styling your docs': 'styling-your-docs.md'
142+
- Home: index.md
143+
- User Guide:
144+
- Writing your docs: writing-your-docs.md
145+
- Styling your docs: styling-your-docs.md
146146
- About:
147-
- 'License': 'license.md'
148-
- 'Release Notes': 'release-notes.md'
147+
- License: license.md
148+
- Release Notes: release-notes.md
149149
```
150150

151151
With the above configuration we have three top level items: "Home", "User Guide"

0 commit comments

Comments
 (0)