Textdirection
Easily change the direction of the text in a block element (paragraph, header, blockquote etc.).
Code
<!DOCTYPE html>
<html>
<head>
<title>Redactor</title>
<meta charset="utf-8">
<!-- redactor css -->
<link rel="stylesheet" href="/your-folder/redactor.css" />
</head>
<body>
<!-- element -->
<textarea id="content">...</textarea>
<!-- redactor js -->
<script src="/your-folder/redactor.js"></script>
<!-- plugin js -->
<script src="/your-folder/plugins/textdirection.js"></script>
<!-- call -->
<script>
$R('#content', { plugins: ['textdirection'] });
</script>
</body>
</html>