hugo.Deps
函数返回一个项目依赖的切片,可以是Hugo Modules或本地主题组件。每个依赖项包含以下信息:
- Owner
- (
hugo.Dependency
) 在依赖树中,此模块是第一个将该模块定义为依赖项的模块(例如github.com/gohugoio/hugo-mod-bootstrap-scss/v5
)。 - Path
- (
string
) 模块路径或位于themes
目录下的路径(例如github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2
)。 - Replace
- (
hugo.Dependency
) 由此依赖项替代的依赖项。 - Time
- (
time.Time
) 版本创建的时间(例如2022-02-13 15:11:28 +0000 UTC
)。 - Vendor
- (
bool
) 报告依赖项是否已引入。 - Version
- (
string
) 模块版本(例如v2.21100.20000
)。
以下是一个列出依赖项的示例表格:
<h2>Dependencies</h2>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Owner</th>
<th scope="col">Path</th>
<th scope="col">Version</th>
<th scope="col">Time</th>
<th scope="col">Vendor</th>
</tr>
</thead>
<tbody>
{{ range $index, $element := hugo.Deps }}
<tr>
<th scope="row">{{ add $index 1 }}</th>
<td>{{ with $element.Owner }}{{ .Path }}{{ end }}</td>
<td>
{{ $element.Path }}
{{ with $element.Replace }}
=> {{ .Path }}
{{ end }}
</td>
<td>{{ $element.Version }}</td>
<td>{{ with $element.Time }}{{ . }}{{ end }}</td>
<td>{{ $element.Vendor }}</td>
</tr>
{{ end }}
</tbody>
</table>