mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
resolve #61
This commit is contained in:
parent
4e83d79d76
commit
2a0700abda
@ -785,7 +785,11 @@ class Parsedown
|
||||
|
||||
if ($element['!'])
|
||||
{
|
||||
$markup .= '<img alt="'.$element['a'].'" src="'.$element['»'].'" />';
|
||||
$markup .= '<img alt="'.$element['a'].'" src="'.$element['»'].'"';
|
||||
|
||||
isset($element['#']) and $markup .= ' title="'.$element['#'].'"';
|
||||
|
||||
$markup .= ' />';
|
||||
}
|
||||
else
|
||||
{
|
||||
|
1
tests/data/1390249049.html
Normal file
1
tests/data/1390249049.html
Normal file
@ -0,0 +1 @@
|
||||
<p><img alt="alt" src="/md.png" title="title" /></p>
|
1
tests/data/1390249049.md
Normal file
1
tests/data/1390249049.md
Normal file
@ -0,0 +1 @@
|
||||
![alt](/md.png "title")
|
Loading…
Reference in New Issue
Block a user