Do not generate ToC if less than 400 words or special variable defined
parent
c7e8c504f8
commit
89e1349ed9
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
title: À propos
|
||||
notoc: true
|
||||
menu: end
|
||||
---
|
||||
|
|
|
@ -28,11 +28,13 @@
|
|||
{{ . }}
|
||||
<br /><br />
|
||||
{{ end }}
|
||||
{{ if (or (not .Params.notoc) (gt .WordCount 400)) }}
|
||||
<div class="message is-info">
|
||||
<div class="message-header">Sommaire</div>
|
||||
<!-- Appreciate this horrible trick, even a 2000's HTML generator won't generate such horrible code -->
|
||||
<div class="message-body pt-1">{{ .TableOfContents | replaceRE "<a" "<a style='text-decoration:none;'" | safeHTML }}</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ .Content }}
|
||||
</article>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue