We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a3035 commit 8b99ed9Copy full SHA for 8b99ed9
src/TiptapConverter.php
@@ -45,6 +45,9 @@ public function blocks(array $blocks): static
45
public function getExtensions(): array
46
{
47
$customExtensions = collect(config('filament-tiptap-editor.extensions', []))
48
+ ->filter(function ($ext) {
49
+ return $ext['parser'] ?? false;
50
+ })
51
->transform(function ($ext) {
52
return new $ext['parser'];
53
})->toArray();
0 commit comments