Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Right-to-Left Text Support

I am trying to write a story in Arabic, but I am having difficulty setting the text right-to-left. My current solution is to edit the resulting html file and include "dir="rtl"" in the html tag. Is there a way to have this effect from within Twine 2?

Comments

  • You might try adding something like the following to your project's Story JavaScript:
    $(document.documentElement).attr('dir', 'rtl');
    
Sign In or Register to comment.