Hi Gamma team, I'm reporting a bug with PPTX export when the presentation contains Hebrew (RTL) text. When exporting a presentation with Hebrew content to .pptx, the text appears broken/reversed in PowerPoint. After investigating the exported XML, I found two issues: All text runs use lang="en-US" even when the content is Hebrew. This should be lang="he-IL" for Hebrew text runs. The fonts used in the export (Readex Pro Semi Bold, Nunito) don't have proper Hebrew glyph support. When PowerPoint substitutes a fallback font, the rendering breaks. The export should either embed the fonts or use standard Hebrew-compatible fonts (e.g. Arial). Additionally, rtlCol="0" is set on text body properties, which should be rtlCol="1" for RTL content. After manually fixing these three attributes in the XML, the presentation renders correctly in PowerPoint. Would appreciate if you could look into this. Thanks