Files
Twig/extra/inky-extra/InkyExtension.php
T
Fabien Potencier 976cea0403 Fix tests
2024-09-01 22:54:59 +02:00

35 lines
749 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Extra\Inky;
use Pinky;
use Twig\Extension\AbstractExtension;
use Twig\TwigFilter;
class InkyExtension extends AbstractExtension
{
public function getFilters(): array
{
return [
new TwigFilter('inky_to_html', [self::class, 'inky'], ['is_safe' => ['html']]),
];
}
/**
* @internal
*/
public static function inky(string $body): string
{
return false === ($html = Pinky\transformString($body)->saveHTML()) ? '' : $html;
}
}