mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 12:26:30 +00:00
32 lines
693 B
PHP
32 lines
693 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()
|
|
{
|
|
return [
|
|
new TwigFilter('inky_to_html', 'Twig\\Extra\\Inky\\twig_inky', ['is_safe' => ['html']]),
|
|
];
|
|
}
|
|
}
|
|
|
|
function twig_inky(string $body): string
|
|
{
|
|
return false === ($html = Pinky\transformString($body)->saveHTML()) ? '' : $html;
|
|
}
|