You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add "directory" versioning scheme, which permits versioned docs in one build.
Usage:
* Set `extra.version.provider: directory` in `mkdocs.yml`.
* Place versioned docs in subdirectories named after the version, e.g. `/v1.1/`, `/v1.2/`.
* Create a `.meta.yml` file in each version directory with version metadata, e.g.:
```yaml
version: v1.2
```
* At the top level, create a `versions.json` file listing available versions, e.g.:
```json
[
{"version": "v1.2", title: "v1.2", "alias": "latest"},
{"version": "v1.1", title: "v1.1"}
]
```
Signed-off-by: Evan Anderson <[email protected]>
0 commit comments