Browse Source

Remove final new line in render template

Track3 2 years ago
parent
commit
d4f0c75ed0

+ 1 - 0
.editorconfig

@@ -12,6 +12,7 @@ trim_trailing_whitespace = true
 
 [*.{html,xml}]
 indent_style = tab
+insert_final_newline = unset
 
 [*.md]
 indent_style = unset

+ 1 - 1
layouts/_default/_markup/render-heading.html

@@ -1 +1 @@
-<h{{ .Level }} id="{{ .Anchor | safeURL }}">{{ .Text | safeHTML }} <a href="#{{ .Anchor | safeURL }}" class="anchor" aria-hidden="true"><span class="anchor-icon">#</span></a></h{{ .Level }}>
+<h{{ .Level }} id="{{ .Anchor | safeURL }}">{{ .Text | safeHTML }} <a href="#{{ .Anchor | safeURL }}" class="anchor" aria-hidden="true"><span class="anchor-icon">#</span></a></h{{ .Level }}>

+ 1 - 1
layouts/_default/_markup/render-image.html

@@ -1,3 +1,3 @@
 <p>
 	<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" loading="lazy"/>
-</p>
+</p>

+ 1 - 1
layouts/_default/_markup/render-link.html

@@ -1 +1 @@
-<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>