瀏覽代碼

Fix TOC header (#168)

In English, the translation that is supposed to be shown on top of the table of contents looks like this:

```toml
[whatsInThis]
other = "What's in this {{.Type }}"
```

When it is invoked, there are two mistakes: `{{ i18n "whatsInThis" humanize .Type }}`.

The first mistake is that you cannot call `humanize` in this context. The more severe one is that if you remove `humanize` it will pass the `.Type` directly to the i18n and that tries to extract `.Type` from it.
tags/2.42
Konrad Kleine 5 年之前
父節點
當前提交
e956994e13
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      layouts/partials/menu-contextual.html

+ 1
- 1
layouts/partials/menu-contextual.html 查看文件

@@ -5,7 +5,7 @@

{{- if .Params.toc -}}
<div class="bg-light-gray pa3 nested-list-reset nested-copy-line-height nested-links">
<p class="f5 b mb3">{{ i18n "whatsInThis" humanize .Type }}</p>
<p class="f5 b mb3">{{ i18n "whatsInThis" . }}</p>
{{ .TableOfContents }}
</div>
{{- end -}}

Loading…
取消
儲存