X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FContent%2FText%2FMarkdown.php;h=e3e2cd3ac957750e56f04205179611a3038aac72;hb=1df19d3553efc02c76ed17cdc617312f19b21bce;hp=2289bee869ee5ca42b885eea7b0defb903ab974d;hpb=14e7686df4250169de91c4db2912b1934cc4800f;p=friendica.git diff --git a/src/Content/Text/Markdown.php b/src/Content/Text/Markdown.php index 2289bee869..e3e2cd3ac9 100644 --- a/src/Content/Text/Markdown.php +++ b/src/Content/Text/Markdown.php @@ -7,9 +7,9 @@ namespace Friendica\Content\Text; use Friendica\BaseObject; +use Friendica\Core\System; use Friendica\Model\Contact; use Michelf\MarkdownExtra; -use Friendica\Content\Text\HTML; /** * Friendica-specific usage of Markdown @@ -26,6 +26,7 @@ class Markdown extends BaseObject * @param string $text * @param bool $hardwrap * @return string + * @throws \Exception */ public static function convert($text, $hardwrap = true) { $stamp1 = microtime(true); @@ -34,8 +35,9 @@ class Markdown extends BaseObject $MarkdownParser->hard_wrap = $hardwrap; $MarkdownParser->code_class_prefix = 'language-'; $html = $MarkdownParser->transform($text); + $html = preg_replace('/getProfiler()->saveTimestamp($stamp1, "parser", System::callstack()); return $html; } @@ -44,27 +46,32 @@ class Markdown extends BaseObject * @brief Callback function to replace a Diaspora style mention in a mention for Friendica * * @param array $match Matching values for the callback + * [1] = mention type (@ or !) + * [2] = name (optional) + * [3] = address * @return string Replaced mention + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException */ private static function diasporaMention2BBCodeCallback($match) { - if ($match[2] == '') { + if ($match[3] == '') { return; } - $data = Contact::getDetailsByAddr($match[2]); + $data = Contact::getDetailsByAddr($match[3]); if (empty($data)) { return; } - $name = $match[1]; + $name = $match[2]; if ($name == '') { $name = $data['name']; } - return '@[url=' . $data['url'] . ']' . $name . '[/url]'; + return $match[1] . '[url=' . $data['url'] . ']' . $name . '[/url]'; } /* @@ -77,27 +84,17 @@ class Markdown extends BaseObject { $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8'); - // Handles single newlines - $s = str_replace("\r\n", "\n", $s); - $s = str_replace("\n", " \n", $s); - $s = str_replace("\r", " \n", $s); - - // Replace lonely stars in lines not starting with it with literal stars - $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s); - // The parser cannot handle paragraphs correctly $s = str_replace(['

', '

', '

'], ['
', '
', '
'], $s); - // Escaping the hash tags - $s = preg_replace('/\#([^\s\#])/', '#$1', $s); + // Escaping hashtags that could be titles + $s = preg_replace('/^\#([^\s\#])/im', '\#$1', $s); $s = self::convert($s); - $regexp = "/@\{(?:([^\}]+?); )?([^\} ]+)\}/"; + $regexp = "/([@!])\{(?:([^\}]+?); ?)?([^\} ]+)\}/"; $s = preg_replace_callback($regexp, ['self', 'diasporaMention2BBCodeCallback'], $s); - $s = str_replace('#', '#', $s); - $s = HTML::toBBCode($s); // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands