如何使用 django-easy-pdf 进行 RTL

How to do RTL with django-easy-pdf

我在项目中使用 django-easy-pdf 来提供输出报告。效果很好。我只是将希伯来语添加到可用语言中,但无法获得 RTL 格式的输出。

我尝试了多种方法来强制进行 RTL 格式化,包括硬编码

            html, body, p, table, tr, td, span {
                direction: rtl;
            }

在 base.html 中的标签内。

django-easy-pdf 是否支持 RTL,如果支持,我该如何实现?

解决方案:使用django-weasyprint代替