Forráskód Böngészése

fix: space before links

Mainly noticeable in CKJ languages.

Fix #1872
George Cushen 4 éve
szülő
commit
f5d9cab6be
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      wowchemy/layouts/_default/_markup/render-link.html

+ 1 - 1
wowchemy/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 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>