.. include:: /Includes.rst.txt .. _transformations-overview: .. _transformations-tsconfig: .. _transformations-tsconfig-examples: .. _transformations-tsconfig-configuration: .. _transformations-tsconfig-configuration-disabled: .. _transformations-tsconfig-configuration-proc: .. _transformations-tsconfig-configuration-specific: .. _transformations-tsconfig-processing: .. _transformations-tsconfig-processing-overrulemode: .. _transformations-tsconfig-processing-allowtagsoutside: .. _transformations-tsconfig-processing-allowtags: .. _transformations-tsconfig-processing-denytags: .. _transformations-tsconfig-processing-blockelementlist: .. _transformations-tsconfig-processing-htmlparser: .. _transformations-tsconfig-processing-dontremoveunknowntags_db: .. _transformations-tsconfig-processing-allowedclasses: .. _transformations-tsconfig-processing-keeppdivattribs: .. _transformations-tsconfig-processing-dontfetchextpictures: .. _transformations-tsconfig-processing-plainimagemode: .. _transformations-tsconfig-processing-exit_entry_htmlparser: .. _transformations-tsconfig-processing-user: ======================= Transformation Overview ======================= The transformation of the content can be configured by listing which *transformation filters* to pass it through. The order of the list is the order in which the transformations are performed when saved to the database. The order is reversed when the content is loaded into the RTE again. Processing can also be overwritten by Page TSconfig, see the :ref:`according section of the Page TSconfig reference ` for details. .. _transformations-overview-filters: Transformation Filters ====================== .. confval:: css_transform :Scope: RTE Transformation filter Transforms the HTML markup either for display in the rich-text editor or for saving in the database. The name "css_transform" is historical; earlier TYPO3 versions had a long since removed "ts_transform" mode, which basically only saved a minimum amount of HTML in the database and produced a lot of nowadays outdated markup like :code:`` tag style rendering in the frontend. .. confval:: ts_links :Scope: RTE Transformation filter Processes anchor tags and resolves them via :php:`\TYPO3\CMS\Core\LinkHandling\LinkService` before saving them to the database, while using the TYPO3-internal :html:`t3://` syntax. .. _transformations-overview-meta: In addition, it is possible to define :ref:`custom transformations ` can be created allowing your to add your own tailor made transformations with a PHP class where you can program how content is processed to and from the database.