The documentation path tells Guidebook Cloud where your documentation files are located within your GitHub repository.
Configure the docs path when importing a repository or in repository settings.
| Path | Description |
|---|---|
/ | Documentation at repository root |
docs/ | Documentation in a docs folder |
jp/ | Japanese documentation folder |
en/ | English documentation folder |
packages/docs/ | Documentation in a monorepo |
Your documentation directory must contain:
Defines the table of contents for your documentation:
# Summary
* [Introduction](README.md)
* [Getting Started](getting-started.md)
* [Configuration](config.md)
The main page of your documentation, displayed when users access the root URL.
For monorepos with multiple documentation directories:
If your documentation is in a subdirectory:
my-repo/
├── packages/
│ ├── core/
│ └── cli/
└── docs/ <- Set docs path to "docs/"
├── SUMMARY.md
└── README.md
For multi-language documentation, create separate repositories for each language:
my-repo/
├── docs/
│ ├── en/ <- Repository 1: docs path "docs/en/"
│ │ ├── SUMMARY.md
│ │ └── README.md
│ └── ja/ <- Repository 2: docs path "docs/ja/"
│ ├── SUMMARY.md
│ └── README.md
To change the docs path for an existing repository:
SUMMARY.md)