Skip to content
Snippets Groups Projects
Commit 55e8f807 authored by Fabian Galinski's avatar Fabian Galinski 😾
Browse files

[TASK] Add some documentation about preventing the removal of custom table classes in the FE

parent a284bb1e
No related branches found
No related tags found
No related merge requests found
......@@ -6,4 +6,16 @@ Augments the tinymce-extension with a more powerful and userfriendly interface.
Currently the image browser isn't integrated well in TYPO3 anymore. The wizard dialog can be added, but it crashed
with errors. Also the code in TYPO3 itself is broken and incompatible currently. We will integrate the wizard again if
the dialog will be reintegrated in rtehtmlarea again.
\ No newline at end of file
the dialog will be reintegrated in rtehtmlarea again.
## FAQ
### How can I stop, that my custom classes for the table tag are removed in the frontend?
Just add these two lines into your TypoScript and adapt the class at the end of each line.
This will prevent the deletion of the custom classes from the table tag within the frontend.
```
lib.parseFunc_RTE.externalBlocks.table.stdWrap.HTMLparser.tags.table.fixAttrib.class.default = responsive
lib.parseFunc_RTE.externalBlocks.table.stdWrap.HTMLparser.tags.table.fixAttrib.class.list = responsive
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment