-
-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: make image render hook aware of assets directory #657
Conversation
✅ Deploy Preview for hugo-hextra ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, great work!
{{- $attributes := "" -}} | ||
{{- range $key, $value := .Attributes -}} | ||
{{- if $value -}} | ||
{{- $pair := printf "%s=%q" $key ($value | transform.HTMLEscape) -}} | ||
{{- $attributes = printf "%s %s" $attributes $pair -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{- with .Title -}} | ||
<figure> | ||
<img src="{{ $dest | safeURL }}" title="{{ . }}" alt="{{ $alt }}" {{ if $lazyLoading }}loading="lazy"{{ end }} /> | ||
<img src="{{ $dest | safeURL }}" title="{{ . }}" alt="{{ $alt }}" {{ $attributes | safeHTMLAttr }} {{ if $lazyLoading }}loading="lazy"{{ end }} /> | ||
<figcaption>{{ . }}</figcaption> | ||
</figure> | ||
{{- else -}} | ||
<img src="{{ $dest | safeURL }}" alt="{{ $alt }}" {{ if $lazyLoading }}loading="lazy"{{ end }} /> | ||
<img src="{{ $dest | safeURL }}" alt="{{ $alt }}" {{ $attributes | safeHTMLAttr }} {{ if $lazyLoading }}loading="lazy"{{ end }} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for also adding the attributes 🙌
{{- with or (.PageInner.Resources.Get $url.Path) (resources.Get $url.Path) -}} | ||
{{/* Images under assets directory */}} | ||
{{- $query := cond $url.RawQuery (printf "?%s" $url.RawQuery) "" -}} | ||
{{- $fragment := cond $url.Fragment (printf "?%s" $url.Fragment) "" -}} | ||
{{- $dest = printf "%s%s%s" .RelPermalink $query $fragment -}} | ||
{{- else -}} | ||
{{/* Images under static directory */}} | ||
{{- $dest = (relURL (strings.TrimPrefix "/" $dest)) -}} | ||
{{- end -}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw this in the hugo builtin rener hook 👍
The image render hooks resolves image URLs in Markdown. So far the implementation in this theme simply assumes that those images are placed in
/static
or relative to the referencing page, while those in/assets
are ignored. Because Hugo lazily copies files in/assets
only when they are explicitly referenced (such as shortcodes), images located in/assets
and dependent on pages using
syntax will not be published, and the corresponding links will actually point to nothing.This PR updates the hook, which now first tries to resolve a image whose link starts with
/
to a global resource (i.e./assets
), and fallbacks to/static
when the image doesn't exist in/assets
.In addition, when the markdown attributes feature is enabled, attributes like
{.class #id}
should be preserved if exists. This PR also adds this functionality to make markdown attributes work with the image render hook.