我想在网页上显示来自 markdown 文件的元数据,因此我尝试使用变量名称(例如 {{ .Author}} )访问它。
这适用于 .Title 和 .Content 变量,但不适用于其他变量!似乎我错过了如何使用这些的重要细节。使用 .Author 变量,页面上的输出为 { map[]}。
提前致谢
降价文件:
---
title: ABC
author: "Foo Bar"
position: Manager
---
The actual content ...
网页:
{{ range where .Data.Pages "Type" "type"}}
<section>
<div>
<div>
{{ .Title }}<br>
{{ .Content }}
</div>
<div>
{{ .Author }}<br>
{{ .Position }}
</div>
</div>
</section>
{{ end }}