I am interested in creating a straightforward message forum system.
My goal is to organize messages in a nested structure (answering questions).
For my website, I want it to be in Hebrew (dir="rtl"
).
I am considering generating <ol>
elements dynamically for each answer/question.
This would look something like:
1. q1
1.1. a1
1.2. a2
1.2.1. a2-a1
How can I achieve this while maintaining the right-to-left direction format?