RichtextEditor inserting HTML
Is there a possibility to insert HTML Text and save it unescaped to the db in the RichtextEditor?

// if you are in the Creating step you can use
protected function mutateFormDataBeforeCreate(array $data): array
{
// $data['your_rich_editor_field_name'] = whattever you want to do to the field data
// for example
$data['your_rich_editor_field_name'] = strip_tags($data['your_rich_editor_field_name']);
// strip_tags is a php function, or you can use anything else
return $data;
}
// if you are in the Update step
protected function mutateFormDataBeforeSave(array $data): array
{
// same as above
return $data;
}