2
1
Fork 0
quickshell-docs/layouts/partials/qmltype.html
2024-02-12 04:07:01 -08:00

18 lines
522 B
HTML

{{- if eq .type "unknown" -}}
unknown
{{- else -}}
{{- $link := "#ERROR" -}}
{{- if eq .type "qt" -}}
{{- $link = printf "https://doc.qt.io/qt-6/%s-%s.html" (lower (replace .module "." "-")) (lower .name) -}}
{{- else if eq .type "local" -}}
{{- $link = printf "/docs/types/%s/%s" (lower .module) (lower .name) -}}
{{- end -}}
{{- $of := "" -}}
{{- if .of -}}
{{- $of = printf "<%s>" (partial "qmltype.html" .of) }}
{{- end -}}
<a href="{{ $link }}">{{ .name }}</a>{{ $of | safeHTML -}}
{{- end -}}