Wallogit.com
2017 © Pedro Peláez
A tool for handling the filtering of content.
A tool for handling the filtering of content., (*1)
The code based on Drupal text filters system. Check out the documentation about how Drupal text filters work., (*2)
<?php
use ChiTeck\TextFormatter\TextFormatter;
use ChiTeck\TextFormatter\Filters\Html;
use ChiTeck\TextFormatter\Filters\Autop;
use ChiTeck\TextFormatter\Filters\Corrector;
$formatter = new TextFormatter([
new Html(['allowedTags' => '<a>
<
ul><li>
<
p><br>']),
new Autop(),
new Corrector(),
]);
$safeText = $formatter->checkMarkup($text);
<p> and <br> in an intelligent fashion.rel="nofollow" to all links.Text Formatter licensed under GPLv2., (*3)