mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-09-02 19:52:40 +00:00
2d0b34b1c6
* perf(assets): optimize TOC scroll tracking and collapse behavior - Replace linear scan + getBoundingClientRect with cached offsets and binary search - Add rAF throttle to syncTocActiveState for per-frame update limit - Use diff-based has-active class updates to avoid visual flash - Simplify collapse CSS (remove broken @supports grid-animation block) - Replace scrollTop assignment with smooth scrollIntoView * refactor(assets): replace template heading numbers with CSS counters - Remove heading counter map and format logic from render-heading.html - Add CSS counters for h2-h6 numbering via .heading-numbered::before - Add CSS counters for TOC ol numbering via ::marker - Use :has(:nth-child(10)) for adaptive ol padding by digit count - Remove [params.heading.number.format] config (CSS uses fixed format) * feat(layouts): add print button to sidebar TOC title - Add print icon button next to TOC title text in sidebar - Use event.stopPropagation() to prevent TOC toggle on click - Add "print" i18n key to all 19 language files - Style print button with secondary color and hover effect
47 lines
2.6 KiB
HTML
47 lines
2.6 KiB
HTML
{{- /* Read the config and format */ -}}
|
|
{{- $toc := dict "Page" .Page "Key" "toc" | partial "function/param.html" -}}
|
|
{{- $headingConfig := dict "Page" .Page "Key" "heading" | partial "function/param.html" -}}
|
|
{{- /* Only enable in main section pages */ -}}
|
|
{{- $intersect := (slice .Page.Section .Page.Type) | intersect site.MainSections -}}
|
|
{{- $onlyMainSection := cond $headingConfig.number.only_main_section ((gt (len $intersect) 0) | and (eq .Page.Kind "page")) true -}}
|
|
{{- $ordered := $toc.ordered | and $headingConfig.number.enable | and $onlyMainSection -}}
|
|
{{- $level := .Level -}}
|
|
{{- $maxMarkupLevel := cond $toc.decrease_h1 2 1 -}}
|
|
|
|
{{- /* Disable ordered headings on home page */ -}}
|
|
{{- if eq hugo.Context.MarkupScope "home" -}}
|
|
{{- $ordered = false -}}
|
|
{{- /* Decrease the level to match the correct HTML level */ -}}
|
|
{{- $level = add $level 1 -}}
|
|
{{- $maxMarkupLevel = 3 -}}
|
|
{{- end -}}
|
|
|
|
{{- $attrs := "" }}
|
|
{{- range $key, $value := .Attributes }}
|
|
{{- $attrs = printf "%s %s=%q" $attrs $key $value }}
|
|
{{- end }}
|
|
|
|
{{- with .Attributes.class }}
|
|
{{- $attrs = replace $attrs . (printf "heading-element %s" .) }}
|
|
{{- else }}
|
|
{{- $attrs = printf "class=%q %s" "heading-element" $attrs }}
|
|
{{- end }}
|
|
{{- $attrs = partial "function/trim.html" $attrs -}}
|
|
|
|
{{- /* Force decrease the markup level to avoid multiple h1 */ -}}
|
|
{{- $decreased := gt $maxMarkupLevel $level -}}
|
|
{{- $markupLevel := cond $decreased $maxMarkupLevel $level -}}
|
|
<h{{ $markupLevel }} {{ $attrs | safeHTMLAttr }}{{ with $decreased }} data-decreased{{ end }}>
|
|
{{- $title := .Text -}}
|
|
{{- if $headingConfig.capitalize -}}
|
|
{{- $title = replace $title .PlainText (title .PlainText) -}}
|
|
{{- end -}}
|
|
<span{{ if $ordered }} class="heading-numbered"{{ end }}>{{ $title | safeHTML }}</span>
|
|
<a href="#{{ .Anchor | safeURL }}" class="heading-mark">
|
|
{{- /* @unocss-skip-start */ -}}
|
|
<svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg>
|
|
{{- /* @unocss-skip-end */ -}}
|
|
</a>
|
|
</h{{ $markupLevel }}>
|
|
{{- /* EOF */ -}}
|