]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Text/Markdown.php
Fix video display problems with videos with parameters
[friendica.git] / src / Content / Text / Markdown.php
index ff6f890bb53361bcf1b9ab762c9344143a43f4bf..ac598d0fc4826dbcfcd575cb9a90fb2e2ad210d3 100644 (file)
@@ -9,6 +9,7 @@ namespace Friendica\Content\Text;
 use Friendica\BaseObject;
 use Friendica\Model\Contact;
 use Michelf\MarkdownExtra;
+use Friendica\Content\Text\HTML;
 
 /**
  * Friendica-specific usage of Markdown
@@ -92,7 +93,7 @@ class Markdown extends BaseObject
 
                $s = str_replace('#', '#', $s);
 
-               $s = Friendica\Content\Text\HTML::toBBCode($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);