How the make the KirbyText `(image: …)` use filename instead of uuid?

Since version 5, when I drag’n’drop files to textarea, I have uuid instead of filename?

Is it possible to define to have the filename instead of the uuid when I drag’n’drop files?

(image: file://xnehjcdtrdrt3xov)

is not very explicit.

The filename method is explicit indeed:

image: designprocess_schemas-01.png)

Here’s a short explicit video :wink:

Ok, first attempt to an auto-response but I’m still lacking info…

I’ve read this and that here: content | Kirby CMS

and it seems I can switch off the by default uuid like so:

return [
  'content' => [
    'uuid' => false
  ]
];

But, is it possible to disable for example only the file images but not the pages, etc.?

If you feel comfortable with extending core classes, you would need to overwrite Kirby\Panel\File::dragText(). If that feels daunting, then no stick to the config option, but no more fine-grained option available.