Typo3 - Rich Text Editor (RTE)
Aus Wikizone
Konfigurationsbeispiele
htmlArea
Mit der Extension htmlarea steht auch für Mozilla basierte Browser ein Editor zur Verfügung der auf dem bekannten HTMLArea basiert.
Viele der RTE Optionen funktionieren auch in htmlarea, darüber hinaus auch noch einige weitere.
Konfigurationsbeispiele htmlarea
Eigene Tags verwenden
RTE.default.proc.allowTags = list-of-allowed-tags RTE.default.proc.HTMLparser_rte.tags.mycustomtag.protect =1
where list-of-allowed-tags is the list of all allowed tags, including your custom tag, and mycustomtag is the name of your tag.
Klasse für Tabellen ändern
«Typo3 always replaces the class I selected in the RTE for a table with the class "contenttable". Do you have an idea how to switch that off?» Assuming that you have installed extension CSS Styled Content (css_styled_content), add the following line in your TS template Setup field:
lib.parseFunc_RTE.externalBlocks.table.stdWrap.HTMLparser.tags.table.fixAttrib.class.list >
The contenttable class will then be added only if no class is specified for the table.