美丽心灵公益论坛's Archiver
论坛
›
电脑技术
› Markdown转Docx
willsonlincake
发表于 2022-4-14 19:51:23
Markdown转Docx
from markdowntodocx.markdownconverter import markdownToWordInDocument
from docx import Document
document = Document("/mypath/to/document.docx")
markdownToWordInFile(document)
document.save("mypath/output_path.docx")
页:
[1]
查看完整版本:
Markdown转Docx