You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2020/04/28 05:44:20 UTC

[GitHub] [incubator-doris] hffariel edited a comment on issue #3408: [Enhancement]Document rebuild with Vuepress.

hffariel edited a comment on issue #3408:
URL: https://github.com/apache/incubator-doris/issues/3408#issuecomment-620393344


   @morningman
   
   > Do you mean a new branch in https://github.com/apache/incubator-doris-website?
   
   1. No, separated directories are all in branch `afs-site`, for multi-version management.
   
   And the asf-site branch will be like:
   
   ```bash
   .
   ├─ master/
   │  ├─ en/
   │  │  ├─ subfolder
   │  │  │  ├─ one.md
   │  │  └─ three.md
   │  └─ zh-CN/
   │      ├─ subfolder
   │      │  ├─ one.md
   │      └─ three.md
   ├─ branch-0.11/
   │  ├─ en/
   │  │  ├─ subfolder
   │  │  │  ├─ one.md
   │  │  └─ three.md
   │  └─ zh-CN/
   │      ├─ subfolder
   │      │  ├─ one.md
   │      └─ three.md
   ├─ index.html // user entry, and auto redirected to master folder
   └─ versions.json // all versions that can be seleted on the website are defined here
   ```
   
   And the `versions.json` is for `version options` configuring:
   
   ```json
   {
     "en": [
       {
         "text": "Versions", // dropdown label
         "items": [
           {
             "text": "master", // dropdown-item label
             "link": "/../master/en/installing/compilation.html", // entry page for this version
             "target": "_blank"
           },
           {
             "text": "incubating-test",
             "link": "/../branch-0.11/en/installing/compilation.html",
             "target": "_blank"
           }
         ]
       }
     ],
     "zh-CN": [
       {
         "text": "版本",
         "items": [
           {
             "text": "master",
             "link": "/../master/zh-CN/installing/compilation.html",
             "target": "_blank"
           },
           {
             "text": "incubating-test",
             "link": "/../incubating-test/zh-CN/installing/compilation.html",
             "target": "_blank"
           }
         ]
       }
     ]
   }
   ```
   
   > Have you done most of the migration?
   
   Yeah, i've done most part of the migration, but there still exists some markdown lint problems which are not that important at this stage. And of course these lint problems would be fixed in the next few days.
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org