-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix regression for image height/width
This fixes a regression introduced in #113 where height/width attributes were removed from images defined in reStructuredText. More discussion here: #113 (comment)
- Loading branch information
Showing
3 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<img alt="alternate text" class="align-right" src="https://example.com/badge.png"> | ||
<img alt="alternate text" class="align-right" height="100px" src="https://example.com/badge.png" width="25.0%"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<img alt="alternate text" class="align-right" src="https://example.com/badge.svg"> | ||
<img alt="alternate text" class="align-right" height="100px" src="https://example.com/badge.svg" width="25.0%"> |