X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FContent%2FText%2FMarkdown.php;h=ceb5b043b3065ba045c27891fc0138df916afd31;hb=4a501e4e46f9207e00d9fda4b294386c0aff770c;hp=e7383a3fd79341c9e3290b34b3ee04f5e98e40e1;hpb=cc688e2b4f52afda5c54a14492c57273f97b23a2;p=friendica.git diff --git a/src/Content/Text/Markdown.php b/src/Content/Text/Markdown.php index e7383a3fd7..ceb5b043b3 100644 --- a/src/Content/Text/Markdown.php +++ b/src/Content/Text/Markdown.php @@ -10,12 +10,10 @@ use Friendica\BaseObject; use Friendica\Model\Contact; use Michelf\MarkdownExtra; -require_once 'include/html2bbcode.php'; - /** * Friendica-specific usage of Markdown * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Markdown extends BaseObject { @@ -27,15 +25,18 @@ class Markdown extends BaseObject * @param string $text * @param bool $hardwrap * @return string + * @throws \Exception */ public static function convert($text, $hardwrap = true) { $stamp1 = microtime(true); $MarkdownParser = new MarkdownExtra(); $MarkdownParser->hard_wrap = $hardwrap; + $MarkdownParser->code_class_prefix = 'language-'; $html = $MarkdownParser->transform($text); + $html = preg_replace('/saveTimestamp($stamp1, "parser"); return $html; } @@ -44,23 +45,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]'; } /* @@ -73,28 +83,18 @@ 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 = html2bbcode($s); + $s = HTML::toBBCode($s); // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands $s = str_replace('♲', html_entity_decode('♲', ENT_QUOTES, 'UTF-8'), $s);