🔀 Merge pull request #655 from stereobooster/portable-links

Portable markdown links
pull/680/head
James Panther 2023-10-24 11:14:57 +11:00 committed by GitHub
commit 92eb1f638e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 7 deletions

View File

@ -1,7 +1,10 @@
<a {{ $link := .Destination }}
href="{{ .Destination | safeURL }}" {{ $isRemote := strings.HasPrefix $link "http" }}
{{ with .Title }}title="{{ . }}"{{ end }} {{- if not $isRemote -}}
{{ if strings.HasPrefix .Destination "http" }}target="_blank" rel="noreferrer noopener"{{ end }} {{ $url := urls.Parse .Destination }}
> {{- if $url.Path -}}
{{- .Text | safeHTML -}} {{ $fragment := "" }}
</a> {{- with $url.Fragment }}{{ $fragment = printf "#%s" . }}{{ end -}}
{{- with .Page.GetPage $url.Path }}{{ $link = printf "%s%s" .RelPermalink $fragment }}{{ end }}{{ end -}}
{{- end -}}
<a href="{{ $link | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if $isRemote }} target="_blank" rel="noreferrer"{{ end }}>{{ .Text | safeHTML }}</a>