How to add Curator picker to markdown editor #441
Unanswered
GasparSukk
asked this question in
Q&A
Replies: 3 comments 2 replies
-
That's not possible without updates to the core markdown editor. |
Beta Was this translation helpful? Give feedback.
0 replies
-
What about extending Markdown editor? use Spatie\FilamentMarkdownEditor\MarkdownEditor;
public static function form(Form $form): Form
{
return $form
->schema([
// other fields ...
MarkdownEditor::make('text')
->fileAttachmentsDisk('admin-uploads')
->fileAttachmentsVisibility('public')
->required(),
]);
} |
Beta Was this translation helpful? Give feedback.
1 reply
-
How to resolve the issue with content with images? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to add/edit/remove images in my markdown editor using Curator plugin/picker.
Is it possible? How can i do it?
Screenshot attached.

Beta Was this translation helpful? Give feedback.
All reactions