Skip to content

Commit 3f0974e

Browse files
Update inTextImg.html
Fix Bad value 15px for attribute height on element img: Expected a digit but saw p instead.
1 parent d5558e9 commit 3f0974e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layouts/shortcodes/inTextImg.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
{{- $height := (.Get "height") }}
33
{{- $alt := (.Get "alt") }}
44

5-
<img class="in-text" height="{{ $height | default `15px` }}" src="{{$Img}}" alt="{{$alt}}">
5+
<img class="in-text" height="{{ $height | default `15` }}" src="{{$Img}}" alt="{{$alt}}">

0 commit comments

Comments
 (0)