]> git.mxchange.org Git - friendica.git/blobdiff - mod/help.php
add a switch to the Markdown parser for using hard line breaks (issue 3592)
[friendica.git] / mod / help.php
index c2693dedba57103e318f59d50cbaf135e28c99ef..95fe91c38bc89735e14ae29bf5d139025d949ede 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+
+use Friendica\App;
+
 require_once('library/markdown.php');
 
 if (!function_exists('load_doc_file')) {
@@ -18,7 +21,7 @@ if (!function_exists('load_doc_file')) {
 
 }
 
-function help_content(App &$a) {
+function help_content(App $a) {
 
        nav_set_selected('help');
 
@@ -46,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)) {
@@ -57,7 +60,7 @@ function help_content(App &$a) {
                                ));
        }
 
-       $html = Markdown($text);
+       $html = Markdown($text, false);
 
        if ($filename !== "Home") {
                // create TOC but not for home
@@ -87,7 +90,7 @@ function help_content(App &$a) {
                for($k=0;$k<$lastlevel; $k++) $toc.="</ul>";
                $html = implode("\n",$lines);
 
-               $a->page['aside'] = $toc.$a->page['aside'];
+               $a->page['aside'] = '<section class="help-aside-wrapper">' . $toc . $a->page['aside'] . '</section>';
        }
 
        $html = "