#153, Remove extra spaces in generated tabs html

This commit is contained in:
Alex Shpak
2020-02-25 21:16:49 +01:00
parent 5d7f257e30
commit 08519158f4
2 changed files with 30 additions and 2 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
{{ $group := printf "tabs-%s" $id }}
<div class="book-tabs">
{{ range $index, $tab := .Scratch.Get $group }}
{{- range $index, $tab := .Scratch.Get $group -}}
<input type="radio" class="hidden" name="{{ $group }}" id="{{ printf "%s-%d" $group $index }}" {{ if not $index }}checked="checked"{{ end }} />
<label for="{{ printf "%s-%d" $group $index }}">
{{ $tab.Name }}
@@ -11,5 +11,5 @@
<div class="book-tabs-content markdown-inner">
{{ .Content | markdownify }}
</div>
{{ end }}
{{- end -}}
</div>