Only show headers when there are 4 or more of them

This commit is contained in:
ItsDrike 2021-08-27 00:00:15 +02:00
parent 381bb3e60d
commit 60849fcdc6
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -12,9 +12,13 @@
<div class="content mt-3">
{{ if .TableOfContents }}
<div class="float-lg-end ml-lg-3 mb-3 p-3">
{{ .TableOfContents }}
</div>
<!-- Get the amount of headers using regex -->
{{ $headers := findRE "<h[1-6].*?>(.|\n])+?</h[1-6]>" .Content }}
{{ if ge (len $headers) 4 }}
<div class="float-lg-end ml-lg-3 mb-3 p-3">
{{ .TableOfContents }}
</div>
{{ end }}
{{ end }}
{{ .Content }}
</div>