Content Publishing --> Content Library - Rich Text strips out certain HTML/CSS/Javascript elements after savingDescriptionRich text is using a "Translated HTML" field to save the content. This case is configured to be sanitized using the HTMLSanitizerConfig, to avoid potential security threads. When the generated HTML/CSS/Javascript contains elements that are not allowed based on this HTMLSanitizerConfig then the Platform strips them out and save the remaining data. Very specific tags like for example (<map>) disappear when savingSteps to Reproduce Go to Content Publishing -> Content Library, click on New and select Rich Text (under Portal section)Fill the mandatory fieldsIn the Rich text field and click to see the source code (<> icon)Add the below content to the source code<p>hello</p><p><map name="ImageMap"><area alt="" coords="182,154,803,245" shape="rect" href="https://google.com" /><area alt="" coords="131,275,805,365" shape="rect" href="https://google.com" /><area alt="" coords="74,380,808,442" shape="rect" href="https://google.com" /></map></p>6. Save and Continue7. Reopen html editor code You will see the <map> disappears NOTE: This is just and example with "map". There are other HTML elements, CSS elements and Javascript that might not be allowed based on the HTMLSanitizerConfig configuration, where you may see the same behavior Workaround As these fields are getting sanitized using HTMLSanitizerConfig, which has a configuration to determine which HTML elements are allowed and which are not (defined by Security) there are a couple of options that can be looked at to workaround this issue: Recommended option is to modify the HTMLSanitizerConfig to allow the elements that are getting stripped out (if they are considered safe). Here is the doc (https://docs.servicenow.com/en-US/bundle/utah-platform-security/page/administer/security/task/t_ConfigureHTMLSanitizer.html). As this is an edit to a Script Include you may miss updates to it in the future. We recommend to mark the script as upgradable after modifying it (when any upgrade to the file comes it will overwrite these changes and might need to be redone)Disable sanitization for the field so none of the elements saved to that field will be ever sanitized. You can refer to this doc In both the cases we recommend to verify with your security team before applying any of the workarounds, as this configuration was put in place to prevent security threats. Related Problem: PRB1670760