docs: remove link whitespace (#3612)
parent
0c0e19c138
commit
19a543289b
|
@ -1,11 +1,16 @@
|
||||||
{{ $link := .Destination -}}
|
{{- $link := .Destination }}
|
||||||
{{ $isRemote := strings.HasPrefix $link "http" -}}
|
{{- $isRemote := strings.HasPrefix $link "http" }}
|
||||||
{{ if not $isRemote -}}
|
{{- if not $isRemote }}
|
||||||
{{ $url := urls.Parse .Destination -}}
|
{{- $url := urls.Parse .Destination }}
|
||||||
{{ if $url.Path -}}
|
{{- if $url.Path }}
|
||||||
{{ $fragment := "" -}}
|
{{- $fragment := "" }}
|
||||||
{{ with $url.Fragment }}{{ $fragment = printf "#%s" . }}{{ end -}}
|
{{- with $url.Fragment }}
|
||||||
{{ with .Page.GetPage $url.Path }}{{ $link = printf "%s%s" .RelPermalink $fragment }}{{ end }}{{ end -}}
|
{{ $fragment = printf "#%s" . }}
|
||||||
{{ end -}}
|
{{- 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>
|
<a href="{{ $link | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if $isRemote }} target="_blank"{{ end }}>{{ .Text | safeHTML }}</a>
|
||||||
{{- /* This comment removes trailing newlines. */ -}}
|
{{- /* This comment removes trailing newlines. */ -}}
|
||||||
|
|
Loading…
Reference in New Issue