mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2024-11-12 23:07:17 +00:00
Only show headers when there are 4 or more of them
This commit is contained in:
parent
381bb3e60d
commit
60849fcdc6
|
@ -12,9 +12,13 @@
|
||||||
|
|
||||||
<div class="content mt-3">
|
<div class="content mt-3">
|
||||||
{{ if .TableOfContents }}
|
{{ if .TableOfContents }}
|
||||||
<div class="float-lg-end ml-lg-3 mb-3 p-3">
|
<!-- Get the amount of headers using regex -->
|
||||||
{{ .TableOfContents }}
|
{{ $headers := findRE "<h[1-6].*?>(.|\n])+?</h[1-6]>" .Content }}
|
||||||
</div>
|
{{ if ge (len $headers) 4 }}
|
||||||
|
<div class="float-lg-end ml-lg-3 mb-3 p-3">
|
||||||
|
{{ .TableOfContents }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue