forked from alex-shpak/hugo-book
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add portable links, requires hugo 0.62
- Loading branch information
1 parent
c217876
commit 289a3f4
Showing
7 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{ if .Page.Site.Params.BookPortableLinks }} | ||
{{- template "portable-image" . -}} | ||
{{ else }} | ||
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title }}title="{{ . }}"{{ end }}/> | ||
{{ end }} | ||
|
||
{{- define "portable-image" -}} | ||
{{- $isRemote := or (in .Destination "://") (strings.HasPrefix .Destination "//") }} | ||
{{- if not $isRemote }} | ||
{{- $path := print .Page.File.Dir .Destination }} | ||
{{- if strings.HasPrefix .Destination "/" }} | ||
{{- $path = print "/static" .Destination }} | ||
{{- end }} | ||
{{- if not (fileExists $path) }} | ||
{{- warnf "Image '%s' not found in '%s'" .Destination .Page.File }} | ||
{{- end }} | ||
{{- end }} | ||
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title }}title="{{ . }}"{{ end }}/> | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{{ if .Page.Site.Params.BookPortableLinks }} | ||
{{- template "portable-link" . -}} | ||
{{ else }} | ||
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a> | ||
{{ end }} | ||
|
||
{{- define "portable-link" -}} | ||
{{- $destination := .Destination }} | ||
{{- $isRemote := or (in .Destination "://") (strings.HasPrefix .Destination "//") }} | ||
{{- if not $isRemote }} | ||
{{- $url := urls.Parse .Destination }} | ||
{{- $path := strings.TrimSuffix "/_index.md" $url.Path }} | ||
{{- $path = strings.TrimSuffix "/_index" $path }} | ||
{{- $path = strings.TrimSuffix ".md" $path }} | ||
{{- $page := .Page.GetPage $path }} | ||
{{- if $page }} | ||
{{- $destination = $page.RelPermalink }} | ||
{{- if $url.Fragment }} | ||
{{- $destination = print $destination "#" $url.Fragment }} | ||
{{- end }} | ||
{{- else if fileExists (print .Page.File.Dir .Destination) }} | ||
<!-- Nothing --> | ||
{{- else -}} | ||
{{- warnf "Page '%s' not found in '%s'" .Destination .Page.File }} | ||
{{- end }} | ||
{{- end }} | ||
<a href="{{ $destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a> | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters