How can I print the param value name?

Have a look at this topic here: Range with an index counter
Probably something like:

{{ range $index, $element := sort .Params.facts "value" "desc" }}							
   <li><strong>{{ $index }}<strong> {{ $element }}</li>
{{ end }}
1 Like