This package provides extensions for the awcodes/filament-tiptap-editor package to integrate it with our own packages.
You can install the package via composer:
composer require wotz/filament-custom-tiptap-extensionsuse Wotz\FilamentCustomTiptapExtensions\Plugins\CheckedListPlugin;use Wotz\FilamentCustomTiptapExtensions\Plugins\LinkPickerRichContentPlugin;
use Filament\Forms\Components\RichEditor;
RichEditor::make('description')
->toolbarButtons([
[
'linkPicker',
'checkedList',
],
])
->plugins([
LinkPickerRichContentPlugin::make(),
CheckedListPlugin::make(),
]);For the full documentation, check here.
vendor/bin/pestPlease see CHANGELOG for more information on what has changed recently.
Please see UPGRADING for more information on how to upgrade to a new version.
Please see CONTRIBUTING for details.
If you discover any security-related issues, please email info@whoownsthezebra.be instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.