Multi-version with i18n #3088
|
Hello, I wonder how to properly support multi-version with i18n (different languages may have different versions), and what structure should we use? Regards |
Answered by
SoonIter
Feb 25, 2026
Replies: 1 comment 1 reply
|
You can check this test case, which has multiple versions and languages simultaneously ├── docs
│ ├── v1
│ │ ├── en
│ │ │ ├── _nav.json
│ │ │ ├── guide
│ │ │ │ ├── _meta.json
│ │ │ │ └── feature.md
│ │ │ ├── guide.md
│ │ │ └── index.md
│ │ └── zh
│ │ ├── _nav.json
│ │ ├── guide
│ │ │ ├── _meta.json
│ │ │ └── feature.md
│ │ ├── guide.md
│ │ └── index.md
│ └── v2
│ ├── en
│ │ ├── _nav.json
│ │ ├── guide
│ │ │ ├── _meta.json
│ │ │ └── feature.md
│ │ ├── guide.md
│ │ └── index.md
│ └── zh
│ ├── _nav.json
│ ├── guide
│ │ ├── _meta.json
│ │ └── feature.md
│ ├── guide.md
│ └── index.md |
1 reply
Answer selected by
JasonXuDeveloper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can check this test case, which has multiple versions and languages simultaneously