e007bdd4e7
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
34 lines
825 B
HTML
34 lines
825 B
HTML
{{- /*
|
|
Highlight a glossary term
|
|
|
|
@param {string} entry Either the glossary abbreviation or the term.
|
|
|
|
or
|
|
|
|
@param {string} 0 Either the glossary abbreviation or the term.
|
|
|
|
@example {{< term entry="MAC" >}}
|
|
@example {{< term "MAC" >}}
|
|
*/ -}}
|
|
|
|
{{- $entry := .Get "entry" | default (.Get 0) -}}
|
|
{{- $entryLower := lower $entry -}}
|
|
{{- $match := dict -}}
|
|
{{- $siteData := partial "utils/hugo-compat/site-data.html" . -}}
|
|
|
|
<!-- Go over the term data file - data/<lang>/termbase.yaml -->
|
|
{{- range (index $siteData .Site.Language.Lang "termbase") -}}
|
|
{{- if or (eq (lower .abbr) $entryLower) (eq (lower .term) $entryLower) -}}
|
|
{{- $match = . -}}
|
|
{{- break -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- with $match }}
|
|
<abbr title="{{ .definition | plainify }}">
|
|
{{- $entry -}}
|
|
</abbr>
|
|
{{- else }}
|
|
{{- $entry -}}
|
|
{{- end }}
|