Right-to-left

This example shows how to change the text direction to right-to-left.

Code

<!-- element -->
<textarea id="entry">...</textarea>

<!-- call -->
<script>
let app = Redactor('#entry', {
    dir: 'rtl'
});
</script>