How to solve BiDi bracket issues?

前端 未结 4 670
孤独总比滥情好
孤独总比滥情好 2021-01-30 09:00

As you might know some languages are written/read from right to left and we are trying to support some RTL languages. For the web UI using dir=\"rtl\" in html does most of the j

4条回答
  •  深忆病人
    2021-01-30 09:41

    You just need to add the LRM character after the last bracket. HTML entity:

    
    
    

    hello (world)‎

    This tells the browser to interpret the brackets as left-to-right reading.

提交回复
热议问题