Hi, apparently Chatbox doesn't support right-to-left languages (RTL) well, and apart from not being able to display text (in the Chat environment) in RTL, there is also this weakness in the html output of the conversation! In the exported conversation (which is exported in html format!) With this command, the text is correctly right-to-left! Maybe for regular text, just using the following style is enough: break-words { direction: rtl; } But since my conversation was full of mathematical formulas, I realized that the formulas would get messed up like this, so the AI suggested the following style, which really worked! <style> .math, .mjx-chtml, .katex { direction: ltr !important; display: inline-block; unicode-bidi: embed; } .break-words { direction: rtl; font-family: Vazirmatn; } </style> If a Custom CSS section is added to Chatbox, like the generated html file (exported conversation), I could improve the conversation section for Persian (and probably other RTL languages) by entering the above command! Of course, if Chatbox is supposed to automatically apply the appropriate text-direction for RTL and LTR languages, another solution must be adopted, because with the above solution, even English texts are RTL, which is not expected, but at least if the Custom CSS section is added, we can add the above command to watch RTL conversations and delete the above styles for LTR conversations!