How to allow embedding of Flash (YouTube videos for example) in the TYPO3 RTE
2 |
allowTags := addToList(object,param,embed) |
3 |
allowTagsOutside := addToList(object,embed) |
4 |
entryHTMLparser_db.allowTags < RTE.default.proc.allowTags |
How to get rid of those annoying images inserted before links
4 |
externalLinkInNewWindow.image > |
5 |
internalLinkInNewWindow.image > |
How to insert larger images without beeing resized or in other words maximum image size for RTE
2 |
buttons.image.options.magic.maxWidth = 1000 |
3 |
buttons.image.options.magic.maxHeight = 1000 |
4 |
buttons.image.options.plain.maxWidth = 1000 |
5 |
buttons.image.options.plain.maxHeight = 1000 |
In this case you just need to modify those values (1000′s) to your desired max width and max height
How to disable entering of paragraphs when pressing on Enter key
2 |
disableEnterParagraphs=1 |
After you enable this setting you will get br’s inserted instead of p’s when pressing the Enter key