1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
This commit is contained in:
Emanuil Rusev
2014-01-20 22:19:23 +02:00
parent 4e83d79d76
commit 2a0700abda
3 changed files with 7 additions and 1 deletions

View File

@@ -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
{