HUGO
Menu
GitHub 87548 stars Mastodon

配置版本

配置版本。
New in v0.153.0

这是默认配置:

versions:
  v1.0.0:
    weight: 0
[versions]
  [versions.'v1.0.0']
    weight = 0
{
   "versions": {
      "v1.0.0": {
         "weight": 0
      }
   }
}

要定义 “v1.0.0” 和 “v2.0.0” 版本:

versions:
  v1.0.0:
    weight: 0
  v2.0.0:
    weight: 0
[versions]
  [versions.'v1.0.0']
    weight = 0
  [versions.'v2.0.0']
    weight = 0
{
   "versions": {
      "v1.0.0": {
         "weight": 0
      },
      "v2.0.0": {
         "weight": 0
      }
   }
}

版本按其 权重 升序排序,然后按 语义版本 降序排序。这会影响构建顺序和补集选择。


Last updated: January 1, 0001
Improve this page