-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Review rteEnabled flag #234
Comments
rteEnabled = false puts the data nearly completely untransformed into the database - nearly: if there are Windows-Newlines (\r\n), they (might?) get converted to Unix-Newlines (\n) rteEnabled = true seems (!) to use RTE transformations - how to configure them: unclear. The "default" line break for RTE Stuff after processing is \r\n (CRLF) (https://api.typo3.org/master/class_t_y_p_o3_1_1_c_m_s_1_1_core_1_1_html_1_1_rte_html_parser.html streamlineLineBreaksAfterProcessing()); Right now I'm trying to understand the way from file to db in external_import - with the hope to find all involved parts and methods. |
Edit of the previous one: rteEnabled works just fine -- if you don't use the bootstrap_package. Longer explanation: the default RTE brings its own configuration, that is overwritten if you use the bootstrap_package.
The default_import should be a copy of a non-bootstrap-default.yaml-file. I'm not sure, WHY this happens, which part of the configuration is responsible for this. But: rteEnabled=true is fine |
Thanks a lot for continuing to dig into that topic! I feel supported and grateful for that. |
It is unclear what the
rteEnabled
flag actually does. This needs to be investigated and - at the very least - better documented.The text was updated successfully, but these errors were encountered: