This commit is contained in:
friendica 2014-03-12 16:22:33 -07:00
commit 40b54410b3
2 changed files with 10 additions and 3 deletions

View file

@ -76,14 +76,18 @@ function help_content(&$a) {
$text = preg_replace_callback("/#include (.*?)\;/ism", 'preg_callback_help_include', $text);
if($doctype === 'html')
return $text;
$content = $text;
if($doctype === 'markdown')
return Markdown($text);
$content = Markdown($text);
if($doctype === 'bbcode') {
require_once('include/bbcode.php');
return bbcode($text);
$content = bbcode($text);
}
return replace_macros(get_markup_template("help.tpl"), array(
'$content' => $content
));
}

3
view/tpl/help.tpl Normal file
View file

@ -0,0 +1,3 @@
<div id = "help-content" class="generic-content-wrapper">
{{$content}}
</div>