Skip to content

Commit

Permalink
incorrect max-height in figure.html (alshedivat#1593)
Browse files Browse the repository at this point in the history
figure.html was incorrectly setting height=max-height instead of
max-height=max-height
  • Loading branch information
NakuraMino authored and george-gca committed Jul 30, 2023
1 parent 7244976 commit e4ca091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/figure.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit e4ca091

Please sign in to comment.