#543, Add summary param for section shortcode

This commit is contained in:
Alex Shpak 2023-08-08 13:38:33 +02:00
parent e7155b473a
commit 3f1bcccbfb
2 changed files with 5 additions and 3 deletions

View File

@ -4,12 +4,12 @@ bookCollapseSection: true
# Section
Section renders pages in section as definition list, using title and description.
Section renders pages in section as definition list, using title and description. Optional param `summary` can be used to show or hide page summary
## Example
```tpl
{{</* section */>}}
{{</* section [summary] */>}}
```
{{<section>}}
{{<section summary >}}

View File

@ -3,8 +3,10 @@
<dt>
<a href="{{ .RelPermalink }}">{{ partial "docs/title" . }}</a>
</dt>
{{ if (in $.Params "summary") -}}
<dd class="markdown-inner">
{{ default .Summary .Description }}
</dd>
{{ end -}}
{{ end }}
</dl>