forked from Python-Markdown/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed parsing of brackets within inline image titles.
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<p><img alt="alt" src="local-img.jpg" /> | ||
<img alt="alt" src="local-img.jpg" title="" /> | ||
<img alt="alt" src="local-img.jpg" title="normal title" /></p> | ||
<p><img alt="alt" src="local-img.jpg" title="(just title in brackets)" /> | ||
<img alt="alt" src="local-img.jpg" title="title with brackets (I think)" /></p> | ||
<p><img alt="alt" src="local-img.jpg" title="(" /> | ||
<img alt="alt" src="local-img.jpg" title="(open only" /> | ||
<img alt="alt" src="local-img.jpg" title=")" /> | ||
<img alt="alt" src="local-img.jpg" title="close only)" /></p> |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
![alt](local-img.jpg) | ||
![alt](local-img.jpg "") | ||
![alt](local-img.jpg "normal title") | ||
|
||
![alt](local-img.jpg "(just title in brackets)") | ||
![alt](local-img.jpg "title with brackets (I think)") | ||
|
||
![alt](local-img.jpg "(") | ||
![alt](local-img.jpg "(open only") | ||
![alt](local-img.jpg ")") | ||
![alt](local-img.jpg "close only)") | ||
|