I want to make a paragraph, right-to-left. I'm using docx module.
I tried:
from docx.enum.text import WD_ALIGN_PARAGRAPH
paragraph = document.add_paragraph()
paragraph.alignment = WD_ALIGN_PARAGRAPH.RIGHT
But it just change the align. How can i edit "right-to-left"?