mirror of https://github.com/jpanther/congo.git
Markdown portable links
parent
f31082dec8
commit
74e53cc7d2
|
@ -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"{{ end }}>{{ .Text | safeHTML }}</a>
|
||||||
|
|
Loading…
Reference in New Issue