* feat(toc): add Table of Contents scroll highlighting - Introduced a new toc.css file for styling the Table of Contents with active link highlighting. - Implemented toc-scroll.js to manage scroll behavior and link activation based on viewport visibility. - Updated core.html to include the new JavaScript file and ensure proper loading of the Table of Contents functionality. * chore: lower root heading font weight for TOC * chore: run `task css` * chore: update dependencies in package.json and package-lock.json to version 4.1.11 for @tailwindcss/postcss and tailwindcss, and update @jridgewell packages to latest versions
18 lines
1.0 KiB
HTML
18 lines
1.0 KiB
HTML
{{- $jsTheme := resources.Get "js/theme.js" | resources.ExecuteAsTemplate "theme.js" . -}}
|
|
{{- $jsMenu := resources.Get "js/menu.js" -}}
|
|
{{- $jsTabs := resources.Get "js/tabs.js" -}}
|
|
{{- $jsLang := resources.Get "js/lang.js" -}}
|
|
{{- $jsNavMenu := resources.Get "js/nav-menu.js" -}}
|
|
{{- $jsCodeCopy := resources.Get "js/code-copy.js" -}}
|
|
{{- $jsFileTree := resources.Get "js/filetree.js" -}}
|
|
{{- $jsSidebar := resources.Get "js/sidebar.js" -}}
|
|
{{- $jsBackToTop := resources.Get "js/back-to-top.js" -}}
|
|
{{- $jsTocScroll := resources.Get "js/toc-scroll.js" -}}
|
|
{{- $jsFavicon := resources.Get "js/favicon.js" | resources.ExecuteAsTemplate "favicon.js" . -}}
|
|
|
|
{{- $scripts := slice $jsTheme $jsMenu $jsCodeCopy $jsTabs $jsLang $jsNavMenu $jsFileTree $jsSidebar $jsBackToTop $jsTocScroll $jsFavicon | resources.Concat "js/main.js" -}}
|
|
{{- if hugo.IsProduction -}}
|
|
{{- $scripts = $scripts | minify | fingerprint -}}
|
|
{{- end -}}
|
|
<script defer src="{{ $scripts.RelPermalink }}" integrity="{{ $scripts.Data.Integrity }}"></script>
|