parsedown/tests/SampleExtensions/UnsafeExtension.php
2019-04-07 16:37:47 +01:00

26 lines
747 B
PHP

<?php
declare(strict_types=1);
namespace Erusev\Parsedown\Tests\SampleExtensions;
use Erusev\Parsedown\Tests\TestParsedown;
class UnsafeExtension extends TestParsedown
{
protected function blockFencedCodeComplete($Block)
{
$text = $Block['element']['element']['text'];
unset($Block['element']['element']['text']);
// WARNING: There is almost always a better way of doing things!
//
// This example is one of them, unsafe behaviour is NOT needed here.
// Only use this if you trust the input and have no idea what
// the output HTML will look like (e.g. using an external parser).
$Block['element']['element']['rawHtml'] = "<p>$text</p>";
return $Block;
}
}