---
title: "Feature: #79341 - TCA richtext configuration in config section"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-79341"
source: "Changelog/8.6/Feature-79341-TCARichtextConfigurationInConfigSection.rst"
typo3-version: "8.6"
typo3-major: 8
type: "feature"
issue: 79341
forge: "https://forge.typo3.org/issues/79341"
tags: ["Backend", "FlexForm", "RTE", "TCA"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Feature: #79341 - TCA richtext configuration in config section {#feature-79341}

See [forge#79341](https://forge.typo3.org/issues/79341)

## Description {#description}

A new config setting `enableRichtext` has been introduced. It enables richtext editing on the text field and replaces the old setting `defaultExtras`.

## Impact {#impact}

Setting `enableRichtext` will result in the text field being rendered with a richtext editor. Config example:

```php
'columns' => [
    'content' => [
        'config' => [
            'type' => 'text',
            'enableRichtext' => true,
        ],
    ],
];
```
