-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support right-to-left un/ordered lists with bulletpoints #270
Comments
Could you please make a short HTML sample + PDF output that allows to reproduce the issue. |
This is an example code
The expected result is having bulletpoints on the right-side of the unordered list. |
@sandre1 from the code of https://github.com/danfickle/openhtmltopdf/blob/open-dev-v1/openhtmltopdf-core/src/main/java/com/openhtmltopdf/render/ListItemPainter.java it don't take the RTL information when paiting the "list decoration". So, it's currently a missing feature. |
* probably should move text to the left a bit !??!
Fixes #270 - right to left list items
Hello. Right now i am trying to render a pdf containing unordered lists with arabic text, but the bullet points of the list items are rendered left-to-right mode.
I am using css style like so :
ul {
direction: rtl;
}
ul li {
direction: rtl;
}`
but this is not working.
Any ideas? thanks
The text was updated successfully, but these errors were encountered: