#169, Remove whitespaces around content in tabs, just to be safe.
This commit is contained in:
parent
050d5a83de
commit
7df4251b72
1 changed files with 3 additions and 3 deletions
|
@ -6,10 +6,10 @@
|
||||||
{{- 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 }} />
|
<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 }}">
|
<label for="{{ printf "%s-%d" $group $index }}">
|
||||||
{{ $tab.Name }}
|
{{- $tab.Name -}}
|
||||||
</label>
|
</label>
|
||||||
<div class="book-tabs-content markdown-inner">
|
<div class="book-tabs-content markdown-inner">
|
||||||
{{ .Content | markdownify }}
|
{{- .Content | markdownify -}}
|
||||||
</div>
|
</div>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue