From 72389988767615d8961928ee7ac47e318db7397f Mon Sep 17 00:00:00 2001 From: NakuraMino <33564642+NakuraMino@users.noreply.github.com> Date: Sat, 29 Jul 2023 20:01:01 -0700 Subject: [PATCH] incorrect max-height in figure.html (#1593) figure.html was incorrectly setting height=max-height instead of max-height=max-height --- _includes/figure.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/figure.html b/_includes/figure.html index e67e804..676236b 100644 --- a/_includes/figure.html +++ b/_includes/figure.html @@ -22,7 +22,7 @@ {% if include.min-width %}min-width="{{ include.min-width }}"{% endif %} {% if include.min-height %}min-height="{{ include.min-height }}"{% endif %} {% if include.max-width %}max-width="{{ include.max-width }}"{% endif %} - {% if include.max-height %}height="{{ include.max-height }}"{% endif %} + {% if include.max-height %}max-height="{{ include.max-height }}"{% endif %} {% if include.alt %}alt="{{ include.alt }}"{% endif %} {% if include.title %}title="{{ include.title }}"{% endif %} {% if include.zoomable %}data-zoomable{% endif %}