diff --git a/library/markdown.php b/library/markdown.php index 769bdb121..8def53fcb 100644 --- a/library/markdown.php +++ b/library/markdown.php @@ -1,14 +1,35 @@ hard_wrap = true; + $MarkdownParser->hard_wrap = $hardwrap; $html = $MarkdownParser->transform($text); $a->save_timestamp($stamp1, "parser"); diff --git a/mod/admin.php b/mod/admin.php index e59baaa1d..90bc8c0fc 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -1687,7 +1687,7 @@ function admin_page_plugins(App $a) { $readme=Null; if (is_file("addon/$plugin/README.md")) { $readme = file_get_contents("addon/$plugin/README.md"); - $readme = Markdown($readme); + $readme = Markdown($readme, false); } elseif (is_file("addon/$plugin/README")) { $readme = "
". file_get_contents("addon/$plugin/README") ."";
}
@@ -1939,7 +1939,7 @@ function admin_page_themes(App $a) {
$readme = Null;
if (is_file("view/theme/$theme/README.md")) {
$readme = file_get_contents("view/theme/$theme/README.md");
- $readme = Markdown($readme);
+ $readme = Markdown($readme, false);
} elseif (is_file("view/theme/$theme/README")) {
$readme = "". file_get_contents("view/theme/$theme/README") ."";
}
diff --git a/mod/help.php b/mod/help.php
index 1d5c831ef..95fe91c38 100644
--- a/mod/help.php
+++ b/mod/help.php
@@ -49,7 +49,7 @@ function help_content(App $a) {
$filename = "Home";
$a->page['title'] = t('Help');
} else {
- $a->page['aside'] = Markdown($home);
+ $a->page['aside'] = Markdown($home, false);
}
if (!strlen($text)) {
@@ -60,7 +60,7 @@ function help_content(App $a) {
));
}
- $html = Markdown($text);
+ $html = Markdown($text, false);
if ($filename !== "Home") {
// create TOC but not for home
diff --git a/mod/invite.php b/mod/invite.php
index f2fae5294..0b8f5046f 100644
--- a/mod/invite.php
+++ b/mod/invite.php
@@ -132,7 +132,7 @@ function invite_content(App $a) {
return $o;
} else {
$linktxt = sprintf( t('To accept this invitation, please visit and register at %s.'), App::get_baseurl()
- . "\r\n" . "\r\n" . t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks.');
+ . "\r\n" . "\r\n" . t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks.'));
}
}