Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@
"pages": [
"fr/index",
"fr/quickstart",
"fr/installation",
"fr/ai-native"
]
},
Expand Down Expand Up @@ -464,7 +465,6 @@
"fr/editor/keyboard-shortcuts"
]
},
"fr/installation",
"fr/create/text",
"fr/create/code",
{
Expand Down Expand Up @@ -780,6 +780,7 @@
"pages": [
"es/index",
"es/quickstart",
"es/installation",
"es/ai-native"
]
},
Expand Down Expand Up @@ -836,7 +837,6 @@
"es/editor/keyboard-shortcuts"
]
},
"es/installation",
"es/create/text",
"es/create/code",
{
Expand Down Expand Up @@ -1152,6 +1152,7 @@
"pages": [
"zh/index",
"zh/quickstart",
"zh/installation",
"zh/ai-native"
]
},
Expand Down Expand Up @@ -1208,7 +1209,6 @@
"zh/editor/keyboard-shortcuts"
]
},
"zh/installation",
"zh/create/text",
"zh/create/code",
{
Expand Down
22 changes: 12 additions & 10 deletions es/organize/settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,18 @@ Agrega una propiedad `$ref` con una ruta de archivo relativa en cualquier lugar
```

```json config/navigation.json
[
{
"group": "Get started",
"pages": ["index", "quickstart"]
},
{
"group": "Guides",
"pages": ["guides/first-steps", "guides/advanced"]
}
]
{
"groups": [
{
"group": "Get started",
"pages": ["index", "quickstart"]
},
{
"group": "Guides",
"pages": ["guides/first-steps", "guides/advanced"]
}
]
}
```

- Los archivos referenciados pueden contener sus propias referencias `$ref`. Las rutas anidadas se resuelven de forma relativa al archivo que las contiene, no de forma relativa a `docs.json`.
Expand Down
22 changes: 12 additions & 10 deletions fr/organize/settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,18 @@ Ajoutez une propriété `$ref` avec un chemin de fichier relatif n'importe où d
```

```json config/navigation.json
[
{
"group": "Get started",
"pages": ["index", "quickstart"]
},
{
"group": "Guides",
"pages": ["guides/first-steps", "guides/advanced"]
}
]
{
"groups": [
{
"group": "Get started",
"pages": ["index", "quickstart"]
},
{
"group": "Guides",
"pages": ["guides/first-steps", "guides/advanced"]
}
]
}
```

- Les fichiers référencés peuvent contenir leurs propres références `$ref`. Les chemins imbriqués sont résolus relativement au fichier qui les contient, et non relativement à `docs.json`.
Expand Down
22 changes: 12 additions & 10 deletions zh/organize/settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,18 @@ keywords: ["docs.json", "配置", "设置", "mint.json"]
```

```json config/navigation.json
[
{
"group": "Get started",
"pages": ["index", "quickstart"]
},
{
"group": "Guides",
"pages": ["guides/first-steps", "guides/advanced"]
}
]
{
"groups": [
{
"group": "Get started",
"pages": ["index", "quickstart"]
},
{
"group": "Guides",
"pages": ["guides/first-steps", "guides/advanced"]
}
]
}
```

- 被引用的文件可以包含自己的 `$ref` 引用。嵌套路径相对于包含它们的文件解析,而不是相对于 `docs.json`。
Expand Down
Loading