docs: remove link whitespace (#3612)

pull/3597/head
James Elliott 2022-06-28 10:52:06 +10:00 committed by GitHub
parent 0c0e19c138
commit 19a543289b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 9 deletions

View File

@ -1,11 +1,16 @@
{{ $link := .Destination -}}
{{ $isRemote := strings.HasPrefix $link "http" -}}
{{ if not $isRemote -}}
{{ $url := urls.Parse .Destination -}}
{{ if $url.Path -}}
{{ $fragment := "" -}}
{{ with $url.Fragment }}{{ $fragment = printf "#%s" . }}{{ end -}}
{{ with .Page.GetPage $url.Path }}{{ $link = printf "%s%s" .RelPermalink $fragment }}{{ end }}{{ end -}}
{{ end -}}
{{- $link := .Destination }}
{{- $isRemote := strings.HasPrefix $link "http" }}
{{- if not $isRemote }}
{{- $url := urls.Parse .Destination }}
{{- if $url.Path }}
{{- $fragment := "" }}
{{- 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"{{ end }}>{{ .Text | safeHTML }}</a>
{{- /* This comment removes trailing newlines. */ -}}