You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently UserFrontEnd Pro on post creation removes all backslashes in the post.
This is probably done as sanitization measure.
For us this is frequently an annoyance, since we use UserFrontEnd Pro in our self-built internal Intranet and a lof of SMB network paths containing backslashes get mentioned in posts, and people would like to copy and paste them.
When posting via the backend, also using TinyMCE, the backslashes get replaced as HTML Unicode chars and not removed.
As an optional setting, could you please allow for a Unicode char replacement of backslashes instead of a complete removal.
This can be done as a TinyMCE config, something like this:
setup: function (editor) {
editor.on('GetContent', function (e) {
//character encoding for backslash
e.content = e.content.replace(/\\/g, "\");
});
}
Thank you.
The text was updated successfully, but these errors were encountered:
Hello everyone,
currently UserFrontEnd Pro on post creation removes all backslashes in the post.
This is probably done as sanitization measure.
For us this is frequently an annoyance, since we use UserFrontEnd Pro in our self-built internal Intranet and a lof of SMB network paths containing backslashes get mentioned in posts, and people would like to copy and paste them.
When posting via the backend, also using TinyMCE, the backslashes get replaced as HTML Unicode chars and not removed.
As an optional setting, could you please allow for a Unicode char replacement of backslashes instead of a complete removal.
This can be done as a TinyMCE config, something like this:
Thank you.
The text was updated successfully, but these errors were encountered: