github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/docs/themes/hugo-geekdoc/layouts/shortcodes/toc.html (about)

     1  {{- $format := default "html" (.Get "format") }}
     2  {{- $tocLevels := default (default 6 .Site.Params.GeekdocToC) .Page.Params.GeekdocToC }}
     3  
     4  {{- if and $tocLevels .Page.TableOfContents -}}
     5    {{- if not (eq ($format | lower) "raw") -}}
     6      <div class="gdoc-toc gdoc-toc__level--{{ $tocLevels }}">
     7        {{ .Page.TableOfContents }}
     8        <hr />
     9      </div>
    10    {{- else -}}
    11      {{ .Page.TableOfContents }}
    12    {{- end -}}
    13  {{- end -}}