- Added native-lazy-load
- Added decoding="async"
Enable target_"_blank" if external link
Hugoで画像を挿入するには、標準のMarkdownで
を書くと、<img src "~">
にレンダリングされますが、ネイティブ Lazy-loadをimgタグに組み込みたいと思ってました。
ちなみに、ネイティブLazy-loadは、
Javascriptを必要とせず、HTMLのloading属性を追加するだけで画像の遅延読み込みを簡単に構成できます
最初は、figureタグやショートカットを利用しないと挿入出来ないと思い、試行錯誤していましたが、調べてみると、HugoのRender hooksを利用すると可能になることを知りました。
Render hooksを詳しく知りたい方は、公式を参照してください。
当初、lazyを組み込んだのですが、decoding="async"
とloading="lazy"
は、併記しても両立しないため、decoding="async"
を採用しました。
併記した場合は、lazyが優先されます
Hugo/layouts/_defaults/_markup/render-image.html
{{ $link := string .Destination }}
{{ if hasPrefix $link "http" }}
<img decoding="async" src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}"{{ end }} />
{{ else }}
<img decoding="async" src="{{ .Page.Permalink }}{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}"{{ end }} />
{{ end }}
Hugo/layouts/_defaults/_markup/render-link.html
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener"{{ end }}>{{ .Text | safeHTML }}</a>
これらカスタマイズしたものをGistにも明記しておきました
Enable target_"_blank" if external link
<!-- Hugo/layouts/_default/_markup/render-image.html --> | |
{{ $link := string .Destination }} | |
{{ if hasPrefix $link "http" }} | |
<img decoding="async" src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}"{{ end }} /> | |
{{ else }} | |
<img decoding="async" src="{{ .Page.Permalink }}{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}"{{ end }} /> | |
{{ end }} |
<!-- Hugo/layouts/_default/_markup/render-link.html --> | |
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener"{{ end }}>{{ .Text | safeHTML }}</a> | |