Skip to content

Commit

Permalink
fix: db716b2
Browse files Browse the repository at this point in the history
Fix Editorconfig auto-added EOF new line to render-link hook, causing whitespace to begin appearing after links - particularly noticeable when there is punctuation after a link.
  • Loading branch information
gcushen committed Feb 8, 2020
1 parent 7ce6e75 commit 9ef1663
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Expand Up @@ -16,5 +16,5 @@ max_line_length = 100
[*.md]
trim_trailing_whitespace = false

[layouts/shortcodes/*.html]
[{layouts/shortcodes/*.html, layouts/_default/_markup/*.html}]
insert_final_newline = false
2 changes: 1 addition & 1 deletion layouts/_default/_markup/render-link.html
@@ -1,2 +1,2 @@
{{/* A Hugo Markdown render hook to parse links, opening external links in new tabs. */}}
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener"{{ end }}>{{ .Text | safeHTML }}</a>
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener"{{ end }}>{{ .Text | safeHTML }}</a>
2 changes: 1 addition & 1 deletion netlify.toml
Expand Up @@ -5,7 +5,7 @@

[build.environment]
HUGO_THEME = "repo"
HUGO_VERSION = "0.62.2"
HUGO_VERSION = "0.64.0"
HUGO_ENABLEGITINFO = "true"

[context.production.environment]
Expand Down

0 comments on commit 9ef1663

Please sign in to comment.