Files
2026-04-18 17:02:56 +02:00

14 lines
244 B
PHP

<?php
namespace App\Support;
use cPad\Plugins\Forum\Services\ForumContentRenderer;
class ForumPostContent
{
public static function render(?string $raw): string
{
return app(ForumContentRenderer::class)->render($raw);
}
}