if (isset($bookmark[1][0]))
$link = $bookmark[1][0];
- if (($title != "") AND (strpos($title, $shared[1]) !== false))
+ if (($shared[1] != "") AND (strpos($title, $shared[1]) !== false))
$shared[1] = $title;
if (($title != "") AND ((strpos($shared[1],$title) !== false) OR
require_once("library/parsedown/Parsedown.php");
function Markdown($text) {
+
+ // Bugfix for the library:
+ // "[Title](http://domain.tld/ )" isn't handled correctly
+ $text = preg_replace("/\[(.*?)\]\s*?\(\s*?(\S*?)\s*?\)/ism", '[$1]($2)', $text);
+
$Parsedown = new Parsedown();
return($Parsedown->text($text));
}