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

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

阅读 6.9k
1 个回答

可以下载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)
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题