author parameter to a []string, which is the default for ox-hugo output.tags/2.6.0
@@ -20,7 +20,13 @@ | |||
</h1> | |||
{{ with .Params.author }} | |||
<p class="tracked"> | |||
By <strong>{{ . | markdownify }}</strong> | |||
By <strong> | |||
{{ if reflect.IsSlice . }} | |||
{{ delimit . ", " | markdownify }} | |||
{{else}} | |||
{{ . | markdownify }} | |||
{{ end }} | |||
</strong> | |||
</p> | |||
{{ end }} | |||
{{/* Hugo uses Go's date formatting is set by example. Here are two formats */}} |