Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Format paths as code #2767

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/en/troubleshooting/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To resolve, install a different edition based on the feature table above. See th

###### Why do I see "Page Not Found" when visiting the home page?

In the content/_index.md file:
In the `content/_index.md` file:

- Is `draft` set to `true`?
- Is the `date` in the future?
Expand All @@ -41,7 +41,7 @@ If the answer to any of these questions is yes, either change the field values,

###### Why is a given page not published?

In the content/section/page.md file, or in the content/section/page/index.md file:
In the `content/section/page.md` file, or in the `content/section/page/index.md` file:

- Is `draft` set to `true`?
- Is the `date` in the future?
Expand All @@ -52,11 +52,11 @@ If the answer to any of these questions is yes, either change the field values,

###### Why can't I see any of a page's descendants?

You may have an index.md file instead of an _index.md file. See [details](/content-management/page-bundles/).
You may have an `index.md` file instead of an `_index.md` file. See [details](/content-management/page-bundles/).

###### What is the difference between an index.md file and an _index.md file?
###### What is the difference between an `index.md` file and an `_index.md` file?

A directory with an index.md file is a [leaf bundle]. A directory with an _index.md file is a [branch bundle]. See [details](/content-management/page-bundles/).
A directory with an `index.md` file is a [leaf bundle]. A directory with an `_index.md` file is a [branch bundle]. See [details](/content-management/page-bundles/).

[branch bundle]: /getting-started/glossary/#branch-bundle
[leaf bundle]: /getting-started/glossary/#leaf-bundle
Expand Down