diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-03-22 19:09:09 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2020-03-22 19:09:09 +0100 |
commit | bccdeca76787eb62a06e266480ff4ec3fb86d99e (patch) | |
tree | deb8dbad59a5e2fe31c72ebcf9e9737d3b158e32 /layouts/_default/_markup/render-image.html | |
parent | a3059fe4f77d5bfdd12fe12977c741f863e4bd9a (diff) |
Remove unintended whitespaces from markdown links
Diffstat (limited to 'layouts/_default/_markup/render-image.html')
-rw-r--r-- | layouts/_default/_markup/render-image.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html index 154e3a7..148cbaf 100644 --- a/layouts/_default/_markup/render-image.html +++ b/layouts/_default/_markup/render-image.html @@ -1,8 +1,8 @@ -{{ if .Page.Site.Params.BookPortableLinks }} +{{- if .Page.Site.Params.BookPortableLinks -}} {{- template "portable-image" . -}} -{{ else }} +{{- else -}} <img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title }}title="{{ . }}"{{ end }}/> -{{ end }} +{{- end -}} {{- define "portable-image" -}} {{- $isRemote := or (in .Destination "://") (strings.HasPrefix .Destination "//") }} |