diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index daa8c5e04..73210860d 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -1,14 +1,12 @@ hard_wrap = $hardwrap; - $html = $MarkdownParser->transform($text); - - $a->save_timestamp($stamp1, "parser"); - - return $html; -} diff --git a/mod/admin.php b/mod/admin.php index e7463a360..81ede51c0 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -4,10 +4,12 @@ * * @brief Friendica admin */ + use Friendica\App; use Friendica\Content\Feature; -use Friendica\Core\System; +use Friendica\Content\Text\Markdown; use Friendica\Core\Config; +use Friendica\Core\System; use Friendica\Core\Worker; use Friendica\Database\DBM; use Friendica\Database\DBStructure; @@ -1777,9 +1779,7 @@ function admin_page_plugins(App $a) $readme = Null; if (is_file("addon/$plugin/README.md")) { - require_once 'library/markdown.php'; - $readme = file_get_contents("addon/$plugin/README.md"); - $readme = Markdown($readme, false); + $readme = Markdown::convert(file_get_contents("addon/$plugin/README.md"), false); } elseif (is_file("addon/$plugin/README")) { $readme = "
" . file_get_contents("addon/$plugin/README") . "";
}
@@ -2028,9 +2028,7 @@ function admin_page_themes(App $a)
$readme = null;
if (is_file("view/theme/$theme/README.md")) {
- require_once 'library/markdown.php';
- $readme = file_get_contents("view/theme/$theme/README.md");
- $readme = Markdown($readme, false);
+ $readme = Markdown::convert(file_get_contents("view/theme/$theme/README.md"), false);
} elseif (is_file("view/theme/$theme/README")) {
$readme = "" . file_get_contents("view/theme/$theme/README") . "";
}
diff --git a/mod/babel.php b/mod/babel.php
index 2b8c37901..a4fbd172e 100644
--- a/mod/babel.php
+++ b/mod/babel.php
@@ -1,11 +1,11 @@
' . t('bb2diaspora: ') . '' . EOL . EOL;
$o .= visible_lf($diaspora) . EOL . EOL;
- $html = Markdown($diaspora);
+ $html = Markdown::convert($diaspora);
$o .= '