Skip to content
Snippets Groups Projects
Commit 3f1bcccb authored by Alex Shpak's avatar Alex Shpak
Browse files

#543, Add summary param for section shortcode

parent e7155b47
Branches
No related tags found
No related merge requests found
......@@ -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 >}}
......@@ -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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment