Initial commit: Rapport Website (Hugo + Hextra)
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{{- /*
|
||||
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 }}
|
||||
Reference in New Issue
Block a user