X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fbabel.php;h=51bbf7c8a4b7ef8c6382dc21aa1c2dbfaee5c59c;hb=9c507e9577286c757df1946441f30e529082a3c8;hp=4550a8efbf954fc49a21b64a8dbcbba584183990;hpb=99b4ec147c5a65cf6d382d464a136d87e200fdbc;p=friendica.git diff --git a/mod/babel.php b/mod/babel.php index 4550a8efbf..51bbf7c8a4 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -5,10 +5,13 @@ use Friendica\Content\Text; use Friendica\Core\L10n; +use Friendica\Core\Renderer; -function visible_lf($s) +function visible_whitespace($s) { - return str_replace("\n", '
', $s); + $s = str_replace(' ', ' ', $s); + + return str_replace(["\r\n", "\n", "\r"], '
', $s); } function babel_content() @@ -20,13 +23,19 @@ function babel_content() $bbcode = trim($_REQUEST['text']); $results[] = [ 'title' => L10n::t('Source input'), - 'content' => visible_lf($bbcode) + 'content' => visible_whitespace($bbcode) + ]; + + $plain = Text\BBCode::toPlaintext($bbcode, false); + $results[] = [ + 'title' => L10n::t('BBCode::toPlaintext'), + 'content' => visible_whitespace($plain) ]; $html = Text\BBCode::convert($bbcode); $results[] = [ - 'title' => L10n::t("BBCode::convert \x28raw HTML\x28"), - 'content' => htmlspecialchars($html) + 'title' => L10n::t('BBCode::convert (raw HTML)'), + 'content' => visible_whitespace(htmlspecialchars($html)) ]; $results[] = [ @@ -37,13 +46,13 @@ function babel_content() $bbcode2 = Text\HTML::toBBCode($html); $results[] = [ 'title' => L10n::t('BBCode::convert => HTML::toBBCode'), - 'content' => visible_lf($bbcode2) + 'content' => visible_whitespace($bbcode2) ]; $markdown = Text\BBCode::toMarkdown($bbcode); $results[] = [ 'title' => L10n::t('BBCode::toMarkdown'), - 'content' => visible_lf($markdown) + 'content' => visible_whitespace($markdown) ]; $html2 = Text\Markdown::convert($markdown); @@ -55,22 +64,48 @@ function babel_content() $bbcode3 = Text\Markdown::toBBCode($markdown); $results[] = [ 'title' => L10n::t('BBCode::toMarkdown => Markdown::toBBCode'), - 'content' => visible_lf($bbcode3) + 'content' => visible_whitespace($bbcode3) ]; $bbcode4 = Text\HTML::toBBCode($html2); $results[] = [ 'title' => L10n::t('BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'), - 'content' => visible_lf($bbcode4) + 'content' => visible_whitespace($bbcode4) + ]; + + $item = [ + 'body' => $bbcode, + 'tag' => '', + ]; + + \Friendica\Model\Item::setHashtags($item); + $results[] = [ + 'title' => L10n::t('Item Body'), + 'content' => visible_whitespace($item['body']) + ]; + $results[] = [ + 'title' => L10n::t('Item Tags'), + 'content' => $item['tag'] ]; break; case 'markdown': $markdown = trim($_REQUEST['text']); $results[] = [ - 'title' => L10n::t('Source input \x28Diaspora format\x29'), + 'title' => L10n::t('Source input (Diaspora format)'), 'content' => '
' . $markdown . '
' ]; + $html = Text\Markdown::convert($markdown); + $results[] = [ + 'title' => L10n::t('Markdown::convert (raw HTML)'), + 'content' => visible_whitespace(htmlspecialchars($html)) + ]; + + $results[] = [ + 'title' => L10n::t('Markdown::convert'), + 'content' => $html + ]; + $bbcode = Text\Markdown::toBBCode($markdown); $results[] = [ 'title' => L10n::t('Markdown::toBBCode'), @@ -80,7 +115,7 @@ function babel_content() case 'html' : $html = trim($_REQUEST['text']); $results[] = [ - 'title' => L10n::t("Raw HTML input"), + 'title' => L10n::t('Raw HTML input'), 'content' => htmlspecialchars($html) ]; @@ -92,7 +127,24 @@ function babel_content() $bbcode = Text\HTML::toBBCode($html); $results[] = [ 'title' => L10n::t('HTML::toBBCode'), - 'content' => visible_lf($bbcode) + 'content' => visible_whitespace($bbcode) + ]; + + $html2 = Text\BBCode::convert($bbcode); + $results[] = [ + 'title' => L10n::t('HTML::toBBCode => BBCode::convert'), + 'content' => $html2 + ]; + + $results[] = [ + 'title' => L10n::t('HTML::toBBCode => BBCode::convert (raw HTML)'), + 'content' => htmlspecialchars($html2) + ]; + + $markdown = Text\HTML::toMarkdown($html); + $results[] = [ + 'title' => L10n::t('HTML::toMarkdown'), + 'content' => visible_whitespace($markdown) ]; $text = Text\HTML::toPlaintext($html); @@ -103,8 +155,8 @@ function babel_content() } } - $tpl = get_markup_template('babel.tpl'); - $o = replace_macros($tpl, [ + $tpl = Renderer::getMarkupTemplate('babel.tpl'); + $o = Renderer::replaceMacros($tpl, [ '$text' => ['text', L10n::t('Source text'), defaults($_REQUEST, 'text', ''), ''], '$type_bbcode' => ['type', L10n::t('BBCode'), 'bbcode', '', defaults($_REQUEST, 'type', 'bbcode') == 'bbcode'], '$type_markdown' => ['type', L10n::t('Markdown'), 'markdown', '', defaults($_REQUEST, 'type', 'bbcode') == 'markdown'],