Skip to content

Commit 450e886

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

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)