2023-11-04 23:11:04 +00:00
|
|
|
{{- $link := .Destination -}}
|
|
|
|
{{- $isRemote := strings.HasPrefix $link "http" -}}
|
2023-10-24 22:11:10 +00:00
|
|
|
{{- if not $isRemote }}
|
2024-02-23 02:36:43 +00:00
|
|
|
{{- $url := urls.Parse .Destination -}}
|
2023-10-31 15:54:45 +00:00
|
|
|
{{- if $url.Path }}
|
2024-02-23 02:36:43 +00:00
|
|
|
{{- $fragment := "" }}
|
2023-10-24 22:11:10 +00:00
|
|
|
{{- with $url.Fragment }}{{ $fragment = printf "#%s" . }}{{ end -}}
|
2023-10-31 15:54:45 +00:00
|
|
|
{{- with .Page.GetPage $url.Path }}
|
|
|
|
{{ $link = printf "%s%s" .RelPermalink $fragment }}
|
|
|
|
{{ else }}
|
|
|
|
{{- if hasSuffix $url.Path ".md" }}
|
2023-11-26 05:25:55 +00:00
|
|
|
{{ warnf "[CONGO] Can't resolve: %s" .Destination }}
|
2023-10-31 15:54:45 +00:00
|
|
|
{{ end -}}
|
|
|
|
{{ end -}}
|
|
|
|
{{ end -}}
|
2023-10-24 22:11:10 +00:00
|
|
|
{{ end -}}
|
2024-02-23 02:36:43 +00:00
|
|
|
<!-- prettier-ignore --><a href="{{ $link | safeURL }}"{{ with .Title }} title="{{ . }}"{{ end }}{{ if $isRemote }} target="_blank" rel="noreferrer"{{ end }}>{{- .Text | safeHTML -}}</a>
|