I got a several pages in my system which includes tables (built using div) that may contain English content from one side, and Hebrew or some any other RTL language from the other side.
My problem is, when these columns contains round brackets (mainly round brackets) they causes a mixture like:
)English (EN
עברית (iw_IL)
So far I managed to solved it using this css class (when the content language is known, and using a flag to add this class to the div):
.RTL:after {
content: "\200E";
}
Using that, the brackets are shown correctly and so far so good.
Now, I need to have a cross app solution without using a flag per each div, css solution or any other tech is welcome.
I need to have a solution which can be applicable for both contents (RTL and LTR languages)