Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jakewies/hugo-theme-codex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Wiesler <jakewiesler@gmail.com>2021-06-17 14:39:32 +0300
committerGitHub <noreply@github.com>2021-06-17 14:39:32 +0300
commit3e26d12a7a517cc3d2bd5c6399b49ace4c9ed860 (patch)
treea104cc5b57fff538f271d0d234291d630c02173c
parent7a6497fa24a418b9765959fed3f705ea1e112cce (diff)
parent7eae9531b252d4a2cde4ff84413dd1576814a186 (diff)
Merge pull request #168 from gprst/fix/forced-whitespace-after-links
Remove forced whitespace after links
-rw-r--r--layouts/_default/_markup/render-link.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/_markup/render-link.html b/layouts/_default/_markup/render-link.html
index d445e88..f29f1b2 100644
--- a/layouts/_default/_markup/render-link.html
+++ b/layouts/_default/_markup/render-link.html
@@ -1,4 +1,4 @@
<a href="{{ .Destination | safeURL }}" {{ with .Title}} title="{{ . }}" {{ end }}
{{ if strings.HasPrefix .Destination "mailto" }} target="_blank" {{ end }}
{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noreferrer noopener" {{ end }}
->{{ .Text | safeHTML }}</a>
+>{{ .Text | safeHTML }}</a> \ No newline at end of file