python如何在docx中插入带css样式的html代码

发布于 2022-09-04 08:55:51 字数 140 浏览 17 评论 0

例如 <b>aaa</b><span style='color:red'>bbb</span>
插入word中,显示为加粗的aaa和红色的bbb
html标签上会有简单的内联css

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没结果 2022-09-11 08:55:51

可以下载python的这个WordInserter。python处理word excel有很多包,可以到官网搜索一下,搜索之前考虑下是win下还是linux下用的,因为有些包因为接口问题不是跨平台的。

传送门

from wordinserter import render, parse
from comtypes.client import CreateObject

# This opens Microsoft Word and creates a new document.
word = CreateObject("Word.Application")
word.Visible = True # Don't set this to True in production!
document = word.Documents.Add()
from comtypes.gen import Word as constants

html = """
<h3>This is a title</h3>
<p><img src="http://placehold.it/150x150" alt="I go below the image as a caption"></p>
<p><i>This is <b>some</b> text</i> in a <a href="http://google.com">paragraph</a></p>
<ul>
    <li>Boo! I am a <b>list</b></li>
</ul>
"""

markdown = """
### This is a title

![I go below the image as a caption](http://placehold.it/150x150)

*This is **some** text* in a [paragraph](http://google.com)

  * Boo! I'm a **list**
"""

# Parse the HTML into a list of operations then feed them into render.
# The Markdown can be parsed by using parser="markdown"
operations = parse(html, parser="html")
render(operations, document=document, constants=constants)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文