将基本 HTML 转换为 RML(Reportlab 标记语言)
是否有任何 Python 库或一些示例代码演示如何将基本 HTML 转换为 RML(Reportlab 标记语言 www.reportlab.org)?我可以考虑使用常规的 HTML 解析器并添加一些自行开发的代码来生成 RML,但我想在这种转换中需要处理很多情况。
Is there any Python library or some sample code which demonstrates how to convert basic HTML into RML (Reportlab Markup Language www.reportlab.org)? I can think of using a regular HTML parser and adding some home grown code to generate the RML, but I guess there will be a lot of cases to handle in such a conversion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这样做应该不会有太大麻烦。除了元素名称上的一些差异之外,它非常简单:只需忽略任何无法轻松转换的 HTML 元素/您不关心转换为 RML 并执行其余操作。我确信,如果您为该项目贡献了一个基本的 HTML 到 RML 解析器,ReportLab 人员会很高兴。
You shouldn't have much trouble doing this. Aside from some differences in element names, it's pretty straightforward: just ignore any HTML elements that can't be easily converted/you don't care about converting to RML and do the rest. I'm sure the ReportLab folks would be glad if you contributed even a basic HTML to RML parser to the project.
简单转换器 ( 将 HTML 转换为 RML
simple converter ( Convert HTML to RML