'content' => htmlspecialchars($html2)
];
+ $bbcode2plain = Text\BBCode::toPlaintext($bbcode);
+ $results[] = [
+ 'title' => L10n::t('HTML::toBBCode => BBCode::toPlaintext'),
+ 'content' => '<pre>' . $bbcode2plain . '</pre>'
+ ];
+
$markdown = Text\HTML::toMarkdown($html);
$results[] = [
'title' => L10n::t('HTML::toMarkdown'),
$text = Text\HTML::toPlaintext($html, 0, true);
$results[] = [
- 'title' => L10n::t('HTML::toPlaintext'),
+ 'title' => L10n::t('HTML::toPlaintext (compact)'),
'content' => '<pre>' . $text . '</pre>'
];
}