Skip to content

Commit 7238998

Browse files
authored
incorrect max-height in figure.html (alshedivat#1593)
figure.html was incorrectly setting height=max-height instead of max-height=max-height
1 parent c824d12 commit 7238998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_includes/figure.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{% if include.min-width %}min-width="{{ include.min-width }}"{% endif %}
2323
{% if include.min-height %}min-height="{{ include.min-height }}"{% endif %}
2424
{% if include.max-width %}max-width="{{ include.max-width }}"{% endif %}
25-
{% if include.max-height %}height="{{ include.max-height }}"{% endif %}
25+
{% if include.max-height %}max-height="{{ include.max-height }}"{% endif %}
2626
{% if include.alt %}alt="{{ include.alt }}"{% endif %}
2727
{% if include.title %}title="{{ include.title }}"{% endif %}
2828
{% if include.zoomable %}data-zoomable{% endif %}

0 commit comments

Comments
 (0)