Comment #⁨2⁩

Hi, Sir,

For your reference,

On my test forum, I added the following code in the "WaterholeServiceProvider.php":

use Waterhole\Extend;
use s9e\TextFormatter\Configurator;

class WaterholeServiceProvider extends Extend\ServiceProvider
{
    public function boot()
    {
        Extend\Formatter::configure(function (Configurator $configurator) {
            $configurator->MediaEmbed->add('facebook');
            $configurator->MediaEmbed->add('youtube');
            $configurator->MediaEmbed->add('instagram');
            $configurator->MediaEmbed->add('tiktok');
            $configurator->MediaEmbed->add('twitter');
            $configurator->MediaEmbed->add('imgur');
        });
    }
}

This allows for quick and simple embedding of the above media platforms.

image.png