We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7df68f commit 5c208a6Copy full SHA for 5c208a6
1 file changed
template/pkg.tpl
@@ -1,7 +1,18 @@
1
{{ define "packages" }}
2
3
+{{ with .packages}}
4
+<p>Packages:</p>
5
+<ul>
6
+ {{ range . }}
7
+ <li>
8
+ <a href="#{{- packageDisplayName . -}}">{{ packageDisplayName . }}</a>
9
+ </li>
10
+ {{ end }}
11
+</ul>
12
+{{ end}}
13
+
14
{{ range .packages }}
- <h2>
15
+ <h2 id="{{- packageDisplayName . -}}">
16
{{- packageDisplayName . -}}
17
</h2>
18
0 commit comments