', $s); } function babel_content() { $o = '

Babel Diagnostic

'; $o .= '
'; $o .= L10n::t('Source (bbcode) text:') . EOL; $o .= '' . EOL; $o .= '
'; $o .= '

'; $o .= '
'; $o .= L10n::t('Source (Diaspora) text to convert to BBcode:') . EOL; $o .= '' . EOL; $o .= '
'; $o .= '

'; if (x($_REQUEST, 'text')) { $text = trim($_REQUEST['text']); $o .= '

' . L10n::t('Source input: ') . '

' . EOL . EOL; $o .= visible_lf($text) . EOL . EOL; $html = bbcode($text); $o .= '

' . L10n::t('bbcode (raw HTML): ') . '

' . EOL . EOL; $o .= htmlspecialchars($html) . EOL . EOL; //$html = bbcode($text); $o .= '

' . L10n::t('bbcode: ') . '

' . EOL . EOL; $o .= $html . EOL . EOL; $bbcode = html2bbcode($html); $o .= '

' . L10n::t('bbcode => html2bbcode: ') . '

' . EOL . EOL; $o .= visible_lf($bbcode) . EOL . EOL; $diaspora = bb2diaspora($text); $o .= '

' . L10n::t('bb2diaspora: ') . '

' . EOL . EOL; $o .= visible_lf($diaspora) . EOL . EOL; $html = Markdown::convert($diaspora); $o .= '

' . L10n::t('bb2diaspora => Markdown: ') . '

' . EOL . EOL; $o .= $html . EOL . EOL; $bbcode = diaspora2bb($diaspora); $o .= '

' . L10n::t('bb2diaspora => diaspora2bb: ') . '

' . EOL . EOL; $o .= visible_lf($bbcode) . EOL . EOL; $bbcode = html2bbcode($html); $o .= '

' . L10n::t('bbcode => html2bbcode: ') . '

' . EOL . EOL; $o .= visible_lf($bbcode) . EOL . EOL; } if (x($_REQUEST, 'd2bbtext')) { $d2bbtext = trim($_REQUEST['d2bbtext']); $o .= '

' . L10n::t('Source input (Diaspora format): ') . '

' . EOL . EOL; $o .= '
' . $d2bbtext . '
' . EOL . EOL; $bb = diaspora2bb($d2bbtext); $o .= '

' . L10n::t('diaspora2bb: ') . '

' . EOL . EOL; $o .= '
' . $bb . '
' . EOL . EOL; } return $o; }